Skip to content

Instantly share code, notes, and snippets.

View akshdeep-singh's full-sized avatar

Akshdeep Singh akshdeep-singh

View GitHub Profile
@akshdeep-singh
akshdeep-singh / multiple_navigators.dart
Last active September 20, 2022 18:01
Flutter sample to use multiple navigators with `bottomNavigationBar`
class MyComponentHomePage extends StatefulWidget {
const MyComponentHomePage();
@override
State<MyComponentHomePage> createState() => _StateHomePage();
}
class _StateHomePage extends State<MyComponentHomePage> {
final _keys = [
GlobalKey<NavigatorState>(),