Created
November 4, 2019 02:12
-
-
Save ipondroid/9facf3bff719fd611f78140f3b94fbfe to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DataTable( | |
columns: [ | |
DataColumn(label: Text('A')), | |
DataColumn(label: Text('B')), | |
], | |
rows: [ | |
DataRow( | |
cells: [ | |
DataCell(Text('A1')), | |
DataCell(Text('B1')), | |
] | |
), | |
DataRow( | |
cells: [ | |
DataCell(Text('A2')), | |
DataCell(Text('B2')), | |
] | |
), | |
], | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment