v1.1.1slidable_bar
사이드바를 표시하고 숨기며 클릭 동작을 사용자 정의할 수 있는 플러터 패키지입니다.
48좋아요 11930일 다운로드150Pub 점수
AndroidiOSWebmacOSWindowsLinux
애니메이션을 사용하여 사이드바를 표시/숨기는 데 사용할 수 있는 플러터 패키지
{"sdk":"flutter"}{"sdk":"flutter"}아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
A Flutter side bar slider can be with any widget you want
reviewSlidableBar can have four positions: top, bottom, right and left.clicker, you can change the clicker widget with what you want.Drawer, but with new way.SlidableBar should have specific width and height, it works fine with scaffold's body.SlidableBar doesn't create it's own context, so it will appear under floating action button if you add one. final SlidableBarController controller = SlidableBarController(initialStatus: true);
SlidableBar(
size: 50, // this will be bar's height in case Side is bottom or top and width in case Side is left or right
children: <Widget>[], // here is the widgets inside the bar
child: Container(), // here is your widget that will be under the bar
// optional
frontColor: Colors.green, // the color of the cycle inside the default clicker
slidableController: controller, // the contoller to change and listen to the bar status
barRadius: const BorderRadius.circular(10.0), // the contoller to change and listen to the bar status
side: Side.bottom, // Side.right is the default
clickerPosition: 1.0, // the position of the clicker, 0.0 is the default
clickerSize: 60, // the sizer of the default clicker, 55 is the default
onChange: (int index){
print(index); // this will print the index of the widget you clicked inside the bar
},
duration: Duration(milliseconds: 500), // the duration of the animation, (300 mil) is the default
isOpenFirst: true, // the initial state of the bar, false is default
backgroundColor: Colors.black, // primary color is default
curve: Curves.ease, // the animation curve, linear is defualt
clicker: Icon(Icons.arrow_forward_ios), // this will build instead of the default clicker
)
In the pubspec.yaml of your flutter project, add the following dependency:
dependencies:
slidable_bar: "^1.1.0"
Then run $ flutter pub get. In your library, add the following import:
import 'package:slidable_bar/slidable_bar.dart';
right left
top bottom
Mahmoud Haj Ali - GitHub