Skip to content

Instantly share code, notes, and snippets.

@ipondroid
Created November 4, 2019 02:12
Show Gist options
  • Save ipondroid/9facf3bff719fd611f78140f3b94fbfe to your computer and use it in GitHub Desktop.
Save ipondroid/9facf3bff719fd611f78140f3b94fbfe to your computer and use it in GitHub Desktop.
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