Skip to content

Instantly share code, notes, and snippets.

@IshanFx
Last active November 11, 2018 06:59
Show Gist options
  • Save IshanFx/ce118798e64dea2a77987de21984588c to your computer and use it in GitHub Desktop.
Save IshanFx/ce118798e64dea2a77987de21984588c to your computer and use it in GitHub Desktop.
Flutter bottom sheet
import 'package:flutter/material.dart';
void main() => runApp(new MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'Flutter Demo',
theme: new ThemeData(
primarySwatch: Colors.blue,
),
home: new MyHomePage(title: 'Flutter Bottom sheet'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => new _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return new Scaffold(
appBar: new AppBar(
title: new Text(widget.title),
),
floatingActionButton: new FloatingActionButton(
onPressed: (){
_settingModalBottomSheet(context);
},
child: new Icon(Icons.add),
),
);
}
}
void _settingModalBottomSheet(context){
showModalBottomSheet(
context: context,
builder: (BuildContext bc){
return Container(
child: new Wrap(
children: <Widget>[
new ListTile(
leading: new Icon(Icons.music_note),
title: new Text('Music'),
onTap: () => {}
),
new ListTile(
leading: new Icon(Icons.videocam),
title: new Text('Video'),
onTap: () => {},
),
],
),
);
}
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment