qqmikey / kf_drawer

Flutter drawer (dynamic ready side menu)
MIT License
213 stars 52 forks source link

Centered menu List - Scrollable #25

Open Edu4rdoBG opened 2 years ago

Edu4rdoBG commented 2 years ago

Please add centered list when menu is scrollable

if (widget.scrollable) { return Column( children: [ Container( child: widget.header, ), Expanded( child: Center( child: ListView( shrinkWrap: true, children: widget.items, ), ), ), if (widget.footer != null) widget.footer!, ], ); }