remove scroll bar on web
This commit is contained in:
parent
69a8cd0005
commit
83994ff199
1 changed files with 8 additions and 5 deletions
|
|
@ -87,11 +87,14 @@ class _MIHBodyState extends State<MIHBody> {
|
||||||
width: screenSize.width,
|
width: screenSize.width,
|
||||||
height: screenSize.height,
|
height: screenSize.height,
|
||||||
decoration: getBoader(),
|
decoration: getBoader(),
|
||||||
child: SingleChildScrollView(
|
child: ScrollConfiguration(
|
||||||
child: Column(
|
behavior: ScrollConfiguration.of(context).copyWith(scrollbars: false),
|
||||||
mainAxisAlignment: MainAxisAlignment.start,
|
child: SingleChildScrollView(
|
||||||
mainAxisSize: MainAxisSize.max,
|
child: Column(
|
||||||
children: widget.bodyItems,
|
mainAxisAlignment: MainAxisAlignment.start,
|
||||||
|
mainAxisSize: MainAxisSize.max,
|
||||||
|
children: widget.bodyItems,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue