v0.3.1
flutter_sidebar
आपके फ्लटर मोबाइल/वेब एप्लिकेशन के लिए आसानी से कॉन्फ़िगर करने वाला साइडबार विजेट।
21लाइक 4330-दिन डाउनलोड40Pub अंक
प्लेटफ़ॉर्म डेटा नहीं
आपके फ्लटर मोबाइल/वेब ऐप्स के लिए आसानी से कॉन्फ़िगर करने वाला साइडबार विजेट
{"sdk":"flutter"}{"sdk":"flutter"}यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
An easy to configure sidebar widget for your flutter mobile/web apps
See also: scaffold_responsive
2020-06-29-225932_1124x667_scrot
import 'package:flutter_sidebar/flutter_sidebar.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'},
],
),
);
}
}