maxim-saplin / data_table_2

In-place substitute for Flutter's DataTable and PaginatedDataTable with fixed/sticky header and extra features
https://pub.dev/packages/data_table_2
BSD 3-Clause "New" or "Revised" License
202 stars 135 forks source link

[Question] How to customize a Row and the Divider between rows ? #245

Closed fvisticot closed 8 months ago

fvisticot commented 8 months ago

I need to implement the following design (custom Row + Spacing between rows). Is it possible with data_table_2 ?

Capture d’écran 2023-12-26 à 22 51 09
maxim-saplin commented 8 months ago

@fvisticot, you can try recreating something similar via DataRow2.decoration, check examples (data_table2_rounded.dart):

image
fvisticot commented 8 months ago

I have checked and it works fine. Tx for this update