Created
November 4, 2019 02:17
-
-
Save ipondroid/f5af6f747e02fd4a2b610be388d7eff2 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
@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