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