rickypid / flutter_expandable_table

A Flutter widget for create an expandable table with header and first column fixed.
https://pub.dev/packages/flutter_expandable_table
BSD 3-Clause "New" or "Revised" License
40 stars 28 forks source link

UI Overflow #20

Closed mabrar312 closed 10 months ago

mabrar312 commented 1 year ago

If there are children in a row, and there are no rows to the parent row UI of the row's first cell that has children is getting overflow image

RichiB20 commented 1 year ago

Hi @mabrar312, it seems we don't see this problem, could you please provide us the code you used for creating the table to verify this?

irshad-hz commented 1 year ago

is there any way to remove the lines inbetween each cells, even after giving margin as zero it is still visible.

RichiB20 commented 1 year ago

Hi @irshad-hz, we noticed this problem and we're investigating why this happens, we think that is something related to Flutter beacuse we don't insert any margin or padding in the package. If you have all the cells of the same color there is a simple workaround: wrap your table with a Stack and insert a Container with the color of your cells before the table, in this way the background of the table will have the same color of the cells. Example:

Stack(
  children: [
    Container(color: primaryColor,),
    _buildSimpleTable(),
  ],
)