suesitran/slider_side_menu
滑動側邊菜單隱藏在螢幕一側,僅當使用者按壓控制按鈕時才開啟
- Stars
- 7
- Forks
- 2
- 最近推送(UTC)
- 2022年5月17日
- 專案狀態
- 未封存
語言DartObjective-CJava
使用的依賴
依賴清單 2 項
- flutter
{"sdk":"flutter"} - flutter_test開發依賴
{"sdk":"flutter"}
原始 README
以下為英文專案原文快照,最新內容請造訪 GitHub。
展開 / 收合專案 README
slider_side_menu
Slider Side Menu that is hidden to the side of the screen, and only open when user taps on the controller button.
Demo
Sample Demo
How to use
In your pubspec.yaml, include the package dependencies into your pubspec.yaml
In your code, add import
import 'package:slider_side_menu/slider_side_menu.dart';
Then add the widget to your screen
SliderSideMenu(childrenData: [
MenuItem(
icon: Icon(Icons.thumb_up),
label: Text("Thumb up"),
onPressed: _thumbUp
),
MenuItem(
icon: Icon(Icons.thumb_down),
label: Text("Thumb down"),
onPressed: _thumbDown
)
], description: "Sample tooltip message")
Sample code: https://github.com/suesitran/slider_side_menu/blob/master/example/lib/main.dart