stopper
드래그하여 미리 정의된 정지 높이 중 하나로 확장할 수 있는 바텀 시트입니다.
드래그하여 사전 정의된 정지 높이 중 하나로 확장할 수 있는 Flutter 위젯입니다.
{"sdk":"flutter"}{"sdk":"flutter"}아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
A bottom sheet that can be expanded to one of the pre-defined stop heights by dragging.
animated image
Some iOS applications have a bottom sheet that has two states: half-expanded and fully expanded.
The standard showBottomSheet method lacks such a capability. The complexity in implementing this
behavior arises when the the bottom sheet needs to be scrollable, making scroll and drag
event handling difficult as these gestures can be used for scrolling the list as well as
for dragging the bottom sheet up/down, depending on the position of the bottom sheet and the current
scroll position. The Stopper plugin addresses this problem by:
ScrollController and ScrollPhysics objects and passing them to the
bottom sheet builder;showStopper function to be used instead of showBottomSheet in
order to handle dismissal of the bottom sheet by the user.This plugin utilizes bottom sheet functionality from the Scaffold
widget and avoids copy/paste from the standard library, making the implementation clear and
easy to maintain.
import 'package:stopper/stopper.dart';
//...
final height = MediaQuery.of(context).size.height;
//...
MaterialButton(
child: Text("Show Stopper"),
onPressed: () {
showStopper(
context: context,
stops: [0.5 * height, height],
builder: (context, scrollController, scrollPhysics, stop) {
return ListView(
controller: scrollController,
physics: scrollPhysics,
children: [
//...
]
);
}
);
},
...
)
Note: The build context passed to showStopper must have a Scaffold widget as an ancestor.
Therefore it's recommended to use Builder to build the body of the Scaffold. See
the complete example app provided in this package for details on this approach.