Skip to content

Instantly share code, notes, and snippets.

@ipondroid
Created November 4, 2019 02:17
Show Gist options
  • Save ipondroid/f5af6f747e02fd4a2b610be388d7eff2 to your computer and use it in GitHub Desktop.
Save ipondroid/f5af6f747e02fd4a2b610be388d7eff2 to your computer and use it in GitHub Desktop.
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('DataTable Demo'),
),
body: SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: SingleChildScrollView(
child: _getDataTable(),
),
)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment