remove scroll bar on web

This commit is contained in:
2024-11-07 10:14:02 +02:00
parent 69a8cd0005
commit 83994ff199

View File

@@ -87,6 +87,8 @@ class _MIHBodyState extends State<MIHBody> {
width: screenSize.width, width: screenSize.width,
height: screenSize.height, height: screenSize.height,
decoration: getBoader(), decoration: getBoader(),
child: ScrollConfiguration(
behavior: ScrollConfiguration.of(context).copyWith(scrollbars: false),
child: SingleChildScrollView( child: SingleChildScrollView(
child: Column( child: Column(
mainAxisAlignment: MainAxisAlignment.start, mainAxisAlignment: MainAxisAlignment.start,
@@ -95,6 +97,7 @@ class _MIHBodyState extends State<MIHBody> {
), ),
), ),
), ),
),
); );
} }
} }