Skip to content

Instantly share code, notes, and snippets.

@kirshiyin89
Created September 30, 2020 12:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kirshiyin89/9f7a600340e61a5f7cba08030ae8dd22 to your computer and use it in GitHub Desktop.
Save kirshiyin89/9f7a600340e61a5f7cba08030ae8dd22 to your computer and use it in GitHub Desktop.
the datatable widget
class DataTableWidget extends StatefulWidget {
DataTableWidget({Key key, this.listOfColumns}) : super(key: key);
final Future<List<ConfigData>> listOfColumns;
@override
_DataTableWidgetState createState() =>
_DataTableWidgetState(this.listOfColumns);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment