Skip to content

Instantly share code, notes, and snippets.

@eduardoflorence
Last active December 20, 2023 16:44
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save eduardoflorence/9ef5035ac7e57eb2f15ceabcae430538 to your computer and use it in GitHub Desktop.
Save eduardoflorence/9ef5035ac7e57eb2f15ceabcae430538 to your computer and use it in GitHub Desktop.
GetX - Sample Drawer
import 'package:flutter/material.dart';
import 'package:get/get.dart';
void main() {
runApp(GetMaterialApp(
navigatorKey: Get.key,
initialRoute: '/home',
getPages: [
GetPage(
name: '/home',
page: () => Home(),
binding: HomeBinding(),
),
GetPage(
name: '/page1',
page: () => Page1(),
binding: Page1Binding(),
),
GetPage(
name: '/page2',
page: () => Page2(),
binding: Page2Binding(),
),
],
));
}
class MainDrawer extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Drawer(
child: ListView(
padding: EdgeInsets.zero,
children: <Widget>[
DrawerHeader(
child: Text('Drawer Header'),
decoration: BoxDecoration(
color: Colors.blue,
),
),
ListTile(
title: Text('Home'),
tileColor: Get.currentRoute == '/home' ? Colors.grey[300] : null,
onTap: () {
print(Get.currentRoute);
Get.back();
Get.offNamed('/home');
},
),
ListTile(
title: Text('Item 1'),
tileColor: Get.currentRoute == '/page1' ? Colors.grey[300] : null,
onTap: () {
Get.back();
Get.offNamed('/page1');
},
),
ListTile(
title: Text('Item 2'),
tileColor: Get.currentRoute == '/page2' ? Colors.grey[300] : null,
onTap: () {
Get.back();
Get.offNamed('/page2');
},
),
],
),
);
}
}
class HomeBinding extends Bindings {
@override
void dependencies() {
Get.put(HomeController(), permanent: true);
}
}
class Home extends GetView<HomeController> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text("APP DRAWER")),
body: Center(
child: Text('Home'),
),
drawer: MainDrawer(),
);
}
}
class HomeController extends GetxController {
@override
void onInit() {
print('>>> HomeController init');
super.onInit();
}
@override
void onReady() {
print('>>> HomeController ready');
super.onReady();
}
}
class Page1Binding extends Bindings {
@override
void dependencies() {
Get.lazyPut(() => Page1Controller());
}
}
class Page1 extends GetView<Page1Controller> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text('Page 1')),
drawer: MainDrawer(),
body: Center(
child: Text(controller.title),
),
);
}
}
class Page1Controller extends GetxController {
final title = 'Page 1';
@override
void onInit() {
print('>>> Page1Controller init');
super.onInit();
}
@override
void onReady() {
print('>>> Page1Controller ready');
super.onReady();
}
@override
void onClose() {
print('>>> Page1Controller close');
super.onClose();
}
}
class Page2Binding extends Bindings {
@override
void dependencies() {
Get.lazyPut(() => Page2Controller());
}
}
class Page2 extends GetView<Page2Controller> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text('Page 2')),
drawer: MainDrawer(),
body: Center(
child: Text(controller.title),
),
);
}
}
class Page2Controller extends GetxController {
final title = 'Page 2';
@override
void onInit() {
print('>>> Page2Controller init');
super.onInit();
}
@override
void onReady() {
print('>>> Page2Controller ready');
super.onReady();
}
@override
void onClose() {
print('>>> Page2Controller close');
super.onClose();
}
}
@Neo490
Copy link

Neo490 commented Jan 1, 2022

Hello. Thank you for this code, it has been very very helpful in getting myself accustomed to Getx and Bindings and the like. Tho I have a question, I'd appreciate if you could help out. How can I get the drawer to open with a Button press?
IconButton( icon: Icon(Icons.menu), color: Colors.white, onPressed: () => MainDrawer.drawerKey.currentState!.openDrawer(), ),
This isn't working as I had expected.
I have implemented a Key fro drawer as,
class MainDrawer extends StatelessWidget { static GlobalKey<ScaffoldState> drawerKey = new GlobalKey<ScaffoldState>(); @override Widget build(BuildContext context) { return Drawer( key: drawerKey, child: ListView( ...
I'd appreciate any help! Thank y for the code too!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment