v0.0.5bottom_drawer
एक बॉटम ड्रॉयर विजेट, कस्टमाइज़ेबल ड्रॉयर हेडर और बॉडी सपोर्ट करता है, सूची बॉडी सपोर्ट करता है, खींचकर खोलने और बंद करने के लिए सपोर्ट करता है।
36लाइक 44830-दिन डाउनलोड150Pub अंक
AndroidiOSWebmacOSWindowsLinux
एक फ्लटर बॉटम ड्रॉयर विजेट।
{"sdk":"flutter"}{"sdk":"flutter"}यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
Bottom Drawer.
DEMO
dependencies:
bottom_drawer: ^0.0.5
import 'package:bottom_drawer/bottom_drawer.dart';
Create a bottom drawer controller.
/// create a bottom drawer controller to control the drawer.
BottomDrawerController controller = BottomDrawerController();
Build a bottom drawer widget.
/// return a bottom drawer widget.
Widget buildBottomDrawer(BuildContext context) {
return BottomDrawer(
/// your customized drawer header.
header: Container(),
/// your customized drawer body.
body: Container(),
/// your customized drawer header height.
headerHeight: 60.0,
/// your customized drawer body height.
drawerHeight: 180.0,
/// drawer background color.
color: Colors.lightBlue,
/// drawer controller.
controller: controller,
);
}
Control the bottom drawer.
/// open the bottom drawer.
controller.open();
/// close the bottom drawer.
controller.close();
For more information, see the example.