bigMOTOR / DataDrivenRxDatasources

DataDrivenRxDatasources - MVVM abstraction boilerplate code over RxDataSources.
MIT License
15 stars 4 forks source link

SectionFooterTitleType should return Optional<String> due to mix sections with footer and without in same table sections source #1

Closed bigMOTOR closed 4 years ago

bigMOTOR commented 4 years ago

It's a common case when the same table contains sections with footer and without. SectionFooterTitleType return String. So the only option to add section without footer is return "", but it adds some extra redundant space between sections. SectionFooterTitleType should return Optional<String> to mix sections with footer and without in the same table sections source.