Last active
December 30, 2023 10:52
-
-
Save felangel/6bcd4be10c046ceb33eecfeb380135dd to your computer and use it in GitHub Desktop.
[flutter_bloc_recipes] Navigation: Routes
This file contains hidden or 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:meta/meta.dart'; | |
import 'package:bloc/bloc.dart'; | |
import 'package:flutter_bloc/flutter_bloc.dart'; | |
void main() { | |
runApp( | |
BlocProvider( | |
builder: (context) => MyBloc(), | |
child: MyApp(), | |
), | |
); | |
} | |
enum MyEvent { eventA, eventB } | |
@immutable | |
abstract class MyState {} | |
class StateA extends MyState {} | |
class StateB extends MyState {} | |
class MyBloc extends Bloc<MyEvent, MyState> { | |
@override | |
MyState get initialState => StateA(); | |
@override | |
Stream<MyState> mapEventToState(MyEvent event) async* { | |
switch (event) { | |
case MyEvent.eventA: | |
yield StateA(); | |
break; | |
case MyEvent.eventB: | |
yield StateB(); | |
break; | |
} | |
} | |
} | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
routes: { | |
'/': (context) => PageA(), | |
'/pageB': (context) => PageB(), | |
}, | |
initialRoute: '/', | |
); | |
} | |
} | |
class PageA extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return BlocListener<MyBloc, MyState>( | |
listener: (context, state) { | |
if (state is StateB) { | |
Navigator.of(context).pushNamed('/pageB'); | |
} | |
}, | |
child: Scaffold( | |
appBar: AppBar( | |
title: Text('Page A'), | |
), | |
body: Center( | |
child: RaisedButton( | |
child: Text('Go to PageB'), | |
onPressed: () { | |
BlocProvider.of<MyBloc>(context).add(MyEvent.eventB); | |
}, | |
), | |
), | |
), | |
); | |
} | |
} | |
class PageB extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return Scaffold( | |
appBar: AppBar( | |
title: Text('Page B'), | |
), | |
body: Center( | |
child: RaisedButton( | |
child: Text('Pop'), | |
onPressed: () { | |
Navigator.of(context).pop(); | |
}, | |
), | |
), | |
); | |
} | |
} |
I updated the code to work with flutter_bloc 8.1.3
Because Flutter discourages the usage of named routes, I used the Navigator with anonymous routes.
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
void main() {
runApp(
BlocProvider(
create: (context) => MyBloc(),
child: const MyApp(),
),
);
}
@immutable
sealed class MyEvent {}
final class EventA extends MyEvent {}
final class EventB extends MyEvent {}
@immutable
abstract class MyState {}
class StateA extends MyState {}
class StateB extends MyState {}
class MyBloc extends Bloc<MyEvent, MyState> {
MyBloc() : super(StateA()) {
on<EventA>((event, emit) => emit(StateA()));
on<EventB>((event, emit) => emit(StateB()));
}
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: PageA(),
);
}
}
class PageA extends StatelessWidget {
const PageA({super.key});
@override
Widget build(BuildContext context) {
return BlocListener<MyBloc, MyState>(
listener: (context, state) {
if (state is StateB) {
Navigator.push(
context,
MaterialPageRoute(builder: (context) => const PageB()),
);
}
},
child: Scaffold(
appBar: AppBar(
title: const Text('Page A'),
),
body: Center(
child: ElevatedButton(
child: const Text('Go to PageB'),
onPressed: () {
BlocProvider.of<MyBloc>(context).add(EventB());
},
),
),
),
);
}
}
class PageB extends StatelessWidget {
const PageB({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Page B'),
),
body: Center(
child: ElevatedButton(
child: const Text('Pop'),
onPressed: () {
Navigator.of(context).pop();
},
),
),
);
}
}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Same Problem
<<>>