caseyryan/flutter_cupertino_bottom_sheet
전체 화면 컵ertino 스타일의 하단 시트를 모방하는 패키지
- Stars
- 10
- Forks
- 3
- 최근 푸시(UTC)
- 2024. 10. 14.
- 프로젝트 상태
- 활성
사용 중인 의존성
의존성 목록 4 개
- flutter
{"sdk":"flutter"} - flutter_keyboard_visibility
^5.0.2 - flutter_test개발 의존성
{"sdk":"flutter"} - flutter_lints개발 의존성
^2.0.0
원본 README
아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
README 펼치기 / 접기
A package that mimics a Cupertino bottom sheet like this VERY EASILY
pub.devstyle: effective dart Awesome Flutter
Apr-20-2023 11-43-53
Unlike existing packages that can mimic the same behavior flutter_cupertino_bottom_sheet does not require a scaffold for this purpose and can be used from any place and any time. You don't have to use any special code except for wrapping your MaterialApp with CupertinoBottomSheetRepaintBoundary() at the beginning. And that's it. That simple. You don't even need a specific context for it to work
How it works.
It's very simple. Internally it uses a repaint boundary to create a screenshot of the whole screen and make a RawImage out of it. So it doesn't matter if the previous route maintains its state or not. It doesn't really need to know anything about the previous route as it uses a screenshot instead of a widget snapshot
Getting started
import the package where you initialize your app
import 'package:flutter_cupertino_bottom_sheet/flutter_cupertino_bottom_sheet.dart';
And then wrap your MaterialApp or whatever type you use with CupertinoBottomSheetRepaintBoundary
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return CupertinoBottomSheetRepaintBoundary(
child: MaterialApp(
...
),
);
}
}
This will provide a necessary RenderRepaintBoundary for the library to work.
Then you can use a Navigator to push this route like this:
Navigator.of(context).push(
CupertinoBottomSheetRoute(
args: const CupertinoBottomSheetRouteArgs(
swipeSettings: SwipeSettings(
canCloseBySwipe: true,
),
),
builder: (context) {
return const TestPage();
},
),
);
Want less code? No problem.
Pass a cupertinoBottomSheetNavigatorKey to your App initialization
@override
Widget build(BuildContext context) {
return CupertinoBottomSheetRepaintBoundary(
child: MaterialApp(
navigatorKey: cupertinoBottomSheetNavigatorKey,
...
),
);
}
And then call openCupertinoBottomSheet() from any place, regardless of context
openCupertinoBottomSheet(builder: (c) {
return const TestPage();
args: CupertinoBottomSheetRouteArgs(
appBar: CupertinoBottomSheetAppBar.withCloseButton(
title: 'Cupertino Actionsheet',
buttonText: 'Done',
headerStyle: Theme.of(context).textTheme.bodyMedium,
onClosePressed: Navigator.of(context).pop,
),
),
});