Flutter 1.7.8+hotfix.4 • channel stable • https://github.com/flutter/flutter.git
Framework • revision 20e5931 (4 weeks ago) • 2019-07-18 20:04:33 -0700
Engine • revision fee001c93f
Tools • Dart 2.4.0
flutter pub global run webdev --version shows 2.4.0
Browser : Chrome
OS: Windows
I'm hitting an issue with flutter webdev when using a Table inside a SingleChildScrollView which has scrollDirection horizontal(doesn't show anything). See examples below.
- Vertical direction works perfect
- The command prompt where I started flutter doesn't give any error
- The console log of the browser doesn't say anything different between (Vertical and Horizontal)
- I've tried making the elements inside the TableRow to use SizedBox with width & height given but that didn't help
SingleChildScrollView(horizontal scroll) doesn't show anything:
SingleChildScrollView(scrollDirection: Axis.**horizontal**, child : Table(children: rows) )

SingleChildScrollView(vertical scroll) works ok:
SingleChildScrollView(scrollDirection: Axis.**vertical**, child : Table(children: rows) )

Code example which exhibits problem
Browser : Chrome
OS: Windows
I'm hitting an issue with flutter webdev when using a Table inside a SingleChildScrollView which has scrollDirection horizontal(doesn't show anything). See examples below.
SingleChildScrollView(horizontal scroll) doesn't show anything:

SingleChildScrollView(scrollDirection: Axis.**horizontal**, child : Table(children: rows) )SingleChildScrollView(vertical scroll) works ok:

SingleChildScrollView(scrollDirection: Axis.**vertical**, child : Table(children: rows) )Code example which exhibits problem