<p>A modal bottom sheet is an alternative to a menu or a dialog and prevents the user from interacting with the rest of the app.</p> <p>If you are looking out for an example on, How to send data to Modal bottom sheet in Flutter, check this article. <a href="https://fluttercentral.com/Articles/Post/1110">https://fluttercentral.com/Articles/Post/1110font-size: 1rem;</a></p> <p>Before going further, lets get some basics on bottom sheets.</p> <p>There are two kinds of bottom sheets in material design: Persistent and Modal.</p> <p>In this example, we are going to see Modal type.</p> <p>If you want to check out about persistent, check this article here. <a href="https://fluttercentral.com/Articles/Post/1149">https://fluttercentral.com/Articles/Post/1149font-size: 1rem;</a></p> <p>This is how the final output of this Modal Bottom Sheet example is going to look like.</p> <p>; }</p> <p>class _ModalBottomSheetDemoState extends State { void _showModalSheet() { showModalBottomSheet( context: context, builder: (builder) { return Container( child: Text('Hello From Modal Bottom Sheet'), padding: EdgeInsets.all(40.0), ); }); }</p> <pre>@override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(title: const Text('Modal bottom sheet')), body: Center( child: RaisedButton( onPressed: _showModalSheet, child: const Text('Show Modal Bottom Sheet')))); } </pre> <p>}</p> <p>Please let me know if you have any further queries.</p> <p>Thanks, Srikanth</p>
How to create a Modal bottom sheet in Flutter?
This Article is posted by seven.srikanth at 2/5/2019 12:48:57 AM
Check out our other latest articles
Safearea widget - How to avoid visual overlap with Notch on flutter mobile app?How to convert row of widgets into column of widgets in flutter based on screen size?
How to run Flutter programs from GitHub?
How to get screen orientation in flutter?
NavigationRail example in flutter
Tags: How to create a Modal bottom sheet in Flutter?
Check out our other latest articles
Safearea widget - How to avoid visual overlap with Notch on flutter mobile app?How to convert row of widgets into column of widgets in flutter based on screen size?
How to run Flutter programs from GitHub?
How to get screen orientation in flutter?
NavigationRail example in flutter