v0.0.1modal_side_sheet
一个用于在您的 Flutter 项目中使用 Material 侧边栏的包。
一个可在您的 Flutter 项目中使用 Material 侧边栏的包。详细了解侧边栏,请访问 Material.io
{"sdk":"flutter"}{"sdk":"flutter"}以下为英文项目原文快照,最新内容请访问 GitHub。
A package to use Material side sheet into your Flutter project. Learn more about side sheet at Material.io
| Android | iOS | MacOS | Web | Linux | Windows |
|---|---|---|---|---|---|
| ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ |
This package comes with two types of side sheets, Standard side sheet and Modal side sheet.
Modal side sheets present content while blocking interaction with the rest of the screen. This side sheet generally used in mobile devices as per recommended by Material Design by Google. See also : Modal Side Sheet
Modal Side Sheet
You can use it by calling showModalSideSheet() function into your Flutter project.
ElevatedButton(
onPressed: () {
showModalSideSheet(
context: context,
ignoreAppBar: false,
body: ListView.builder(
itemBuilder: (context, index) {
return ListTile(
leading: Icon(Icons.face),
title: Text("I am on $index index"),
trailing: Icon(Icons.safety_divider),
);
},
));
},
child: Text("Show Modal Side Sheet")),
Standard side sheets co-exist with the screen’s primary UI region, which allows viewing and interaction with both surfaces. They are used only on tablet and desktop. See also: Standard Side Sheet
Standard Side Sheet
This side sheet can be used with BodyWithSideSheet widget.
Just place this widget into your Scaffold's body property.
@override
Widget build(BuildContext context){
return Scaffold(
appBar:AppBar(title:Text("Standard Side Sheet Demo")),
body:BodyWithSideSheet(
body:Container(
child:Text("My App Body"),
),
sheetBody:Container(
child:Text("My Sheet Body"),
),
show:true
),
);
}
This is fully open source project so you are welcome to sontribute to any features or bug-fixing.
Don't forgot to star and fork the repository and make your first pull request.
Project released under MIT License.