pavankataria / SwiftDataTables

A Swift Data Table package, display grid-like data sets in a nicely formatted table for iOS. Subclassing UICollectionView that allows ordering, and searching with extensible options.
MIT License
448 stars 69 forks source link

Column width calculated wrong #74

Open dmitri256 opened 4 months ago

dmitri256 commented 4 months ago

Currently column width is max from title width and average with of data in column. It is wrong, because if column has some empty rows and other are comparable long, then contents of not empty rows are cutten. To fix this it is necessary to take max length of data in column instead of average.