Page Transition Effect in Flutter with Getx
Hi Coders,
Hope you all doing great,
This is the 5th part of Getx tutorial and 4 parts are already uploaded and live in video and written format and if still didn't watch and read and need the code for them then you can the below parts
Watch youtube video on this:
This is the 5th part of Getx tutorial and 4 parts are already uploaded and live in video and written format and if still didn't watch and read and need the code for them then you can the below parts
Watch youtube video on this:
🌍 Read Articles on previous parts 👇:
- Read Getx tutorial (part-1): 👉 Getx integration
- Read Getx tutorial (part-2): 👉 Getx Routes
- Read Getx tutorial (part-3): 👉 Getx Builder
- Read Getx tutorial (part-4): 👉 Getx localization
📹 Watch Video on previous parts 👇:
- Watch Getx tutorial (part-1): 👉 Getx integration
- Watch Getx tutorial (part-2): 👉 Getx Routes
- Watch Getx tutorial (part-3): 👉 Getx Builder
- Watch Getx tutorial (part-4): 👉 Getx localization
Let's dig in into Getx Page Transition Effect :
app_pages.dart
abstract class AppPages {
AppPages._();
static const initial = Routes.home;
static final routes = [
/// Home page$
GetPage(
name: Routes.home,
page: () => const HomepageView(),
binding: HomepageBinding()),
// Testing page
GetPage(
transition: Transition.zoom,
name: Routes.testing,
page: () => const TestingView(),
binding: TestingBinding()),
];
}