Created
January 18, 2021 01:47
-
-
Save eduardoflorence/102d9b2b67cb4a4352d0614fad179938 to your computer and use it in GitHub Desktop.
GetX - Sample StateManager without GetMaterialApp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import 'package:get/get.dart'; | |
void main() { | |
runApp(MaterialApp(home: HomePage())); | |
} | |
class HomePage extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return Scaffold( | |
appBar: AppBar(title: Text('HOME')), | |
body: Center( | |
child: RaisedButton( | |
child: Text('Go to page 2'), | |
onPressed: () => Navigator.push( | |
context, | |
MaterialPageRoute(builder: (context) => Page2()), | |
), | |
), | |
), | |
); | |
} | |
} | |
class Page2 extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return Scaffold( | |
appBar: AppBar(title: Text('Page2')), | |
body: Container( | |
child: GetX<Page2Controller>( | |
init: Page2Controller(), | |
builder: (_) { | |
return Center( | |
child: Text('${_.name.value}/${_.anotherController.name.value}'), | |
); | |
}, | |
), | |
), | |
); | |
} | |
} | |
class Page2Controller extends GetxController { | |
final name = 'Page2'.obs; | |
final anotherController = Get.put(AnotherController()); | |
@override | |
void onInit() { | |
print('onInit'); | |
super.onInit(); | |
} | |
@override | |
void onReady() { | |
print('onReady'); | |
super.onReady(); | |
} | |
@override | |
void onClose() { | |
Get.delete<AnotherController>(); | |
print('onClose'); | |
super.onClose(); | |
} | |
} | |
class AnotherController extends GetxController { | |
final name = 'Another'.obs; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment