App setup
Start with GetMaterialApp.
Root app
main.dart
GetMaterialApp(
initialRoute: '/',
getPages: [
GetPage(name: '/', page: () => const HomePage()),
GetPage(name: '/profile', page: () => const ProfilePage()),
],
);