Widgets An easy to configure sidebar widget for flutter Jul 08, 2020 1 min read flutter_Sidebar An easy to configure sidebar widget for your flutter mobile/web apps. Usage import 'package:flutter_sidebar/flutter_sidebar.dart'; Dart Simple Sidebar with few sidebar items: class MyHomePage extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(title: Text('Flutter Sidebar')), drawer: Sidebar.fromJson( tabs: [ { 'title': 'Chapter A', 'children': [ {'title': 'Chapter A1'}, {'title': 'Chapter A2'}, ], }, { 'title': 'Chapter B', 'children': [ {'title': 'Chapter B1'}, { 'title': 'Chapter B2', 'children': [ {'title': 'Chapter B2a'}, {'title': 'Chapter B2b'}, ], }, ], }, {'title': 'Chapter C'}, ], ), ); } } Dart GitHub https://github.com/tusharsadhwani/flutter_sidebar WidgetsSidebar
Widgets A Hold To Confirm Button widget for Flutter apps This package provides a HoldToConfirmButton widget for Flutter apps. It allows users to hold down the button, which visually fills up as it's pressed. 30 March 2024
Widgets A Flutter package allows you to effortlessly create a animated book widget UI A Flutter package allows you to effortlessly create a animated book widget UI with dynamic content rendering. 31 January 2024
Widgets ModularUI: Pre-built beautiful flutter widgets ModularUI is a pre-built Flutter widget library designed for creating beautiful, accessible, and responsive user interfaces. 20 January 2024