Routing Configuration
Create a file named routes.dart in the lib directory of your project.
routes.dart
import 'package:quizapp/about/about.dart';
import 'package:quizapp/profile/profile.dart';
import 'package:quizapp/login/login.dart';
import 'package:quizapp/topics/topics.dart';
import 'package:quizapp/home/home.dart';
var appRoutes = {
'/': (context) => const HomeScreen(),
'/login': (context) => const LoginScreen(),
'/topics': (context) => const TopicsScreen(),
'/profile': (context) => const ProfileScreen(),
'/about': (context) => const AboutScreen(),
};
Register the appRoutes
with the MaterialApp
in the main.dart
file.
main.dart
import 'package:quizapp/routes.dart';
// ...
return MaterialApp(
routes: appRoutes,
);
Basic Navigation between Scaffolds
Push a new screen on to the stack.
home.dart
class HomeScreen extends StatelessWidget {
const HomeScreen({ Key? key }) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: ElevatedButton(
child: Text('about'),
onPressed: () => Navigator.pushNamed(context, '/about'),
),
),
);
}
The appBar
will automatically have a back button.
about.dart
class AboutScreen extends StatelessWidget {
const AboutScreen({ Key? key }) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(),
);
}
}