ListDrawer function
Implementation
Drawer ListDrawer(List<Widget> items, {double? width = 200, List<Widget>? tailItems}) {
return Drawer(width: width, child: ColumnMax([ListView(shrinkWrap: true, children: items), Spacer(), ...(tailItems ?? [])]));
}