bottom_drawer 0.0.5 bottom_drawer: ^0.0.5 copied to clipboard
A bottom drawer widget, support customize drawer header and body, support list body, support drag to open and close.
import 'package:bottom_drawer/bottom_drawer.dart';
import 'package:flutter/material.dart';
/// Created by GP
/// 2020/11/25.
void main() {
runApp(MyApp());
}
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Bottom drawer example app'),
),
body: Stack(
children: [
Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Text('Pressed $_button'),
Padding(
padding: EdgeInsets.only(top: 30.0),
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
IconButton(
icon: Icon(
Icons.arrow_upward,
color: Colors.black,
),
onPressed: () {
_controller.open();
setState(() {
_button = 'Open Drawer';
});
},
),
Divider(
height: 10.0,
),
IconButton(
icon: Icon(
Icons.arrow_downward,
color: Colors.black,
),
onPressed: () {
_controller.close();
setState(() {
_button = 'Close Drawer';
});
},
),
],
),
),
],
),
_buildBottomDrawer(context),
],
),
),
);
}
Widget _buildBottomDrawer(BuildContext context) {
return BottomDrawer(
header: _buildBottomDrawerHead(context),
body: _buildBottomDrawerBody(context),
headerHeight: _headerHeight,
drawerHeight: _bodyHeight,
color: Colors.lightBlue,
controller: _controller,
boxShadow: [
BoxShadow(
color: Colors.black.withOpacity(0.15),
blurRadius: 60,
spreadRadius: 5,
offset: const Offset(2, -6), // changes position of shadow
),
],
);
}
Widget _buildBottomDrawerHead(BuildContext context) {
return Container(
height: _headerHeight,
child: Column(
children: [
Padding(
padding: EdgeInsets.only(
left: 10.0,
right: 10.0,
top: 10.0,
),
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: _buildButtons('', 1, 2),
),
),
Spacer(),
Divider(
height: 1.0,
color: Colors.grey,
),
],
),
);
}
Widget _buildBottomDrawerBody(BuildContext context) {
return Container(
width: double.infinity,
height: _bodyHeight,
child: SingleChildScrollView(
child: Column(
children: _buildButtons('Body', 1, 25),
),
),
);
}
List<Widget> _buildButtons(String prefix, int start, int end) {
List<Widget> buttons = [];
for (int i = start; i <= end; i++)
buttons.add(TextButton(
child: Text(
'$prefix Button $i',
style: TextStyle(
fontSize: 15.0,
color: Colors.black,
),
),
onPressed: () {
setState(() {
_button = '$prefix Button $i';
});
},
));
return buttons;
}
String _button = 'None';
double _headerHeight = 60.0;
double _bodyHeight = 180.0;
BottomDrawerController _controller = BottomDrawerController();
}