About 10,200,000 results
Open links in new tab
  1. Bottom Navigation Bar in Flutter using GetX | by Ehsan Bigzad

    Feb 13, 2021 · This article is written based on the bottom navigation bar in Flutter using GetX state management video tutorial on TeamArtisans's youtube channel. Why GetX? GetX is an …

  2. How to use bottomnavigationbar in flutter with Getx state …

    Sep 29, 2022 · runApp(GetMaterialApp( debugShowCheckedModeBanner: false, initialRoute: '/home', defaultTransition: Transition.fade, getPages: [ GetPage( name: '/home', page: () => …

  3. How to build Bottom Navigation Bar using GetX in Flutter

    Dec 6, 2021 · Create a Bottom NavigationBar with the GetX plugin in Flutter with RRTutors. Learn how to use GetX for efficient state management and navigation.

  4. Using GetX (Get) for Navigation and Routing in Flutter

    Flutter already provides built-in navigator APIs that can help us navigate between screens (routes) and show dialogs, snack bars, and bottom sheets without installing a third-party library. They …

  5. Flutter Getx - Bottom Navigation Bar Example - GitHub

    Bottom Navigation Bar in Flutter example implemented over GetX state management package

  6. Bottom navigation Bar in Flutter using GetX

    May 3, 2021 · In this blog, I’ll walk you through the steps of creating bottom navigation bar in Flutter using GetX. I’ll be GetX for state management in this tutorial. Step 1 : Project setup. …

  7. Nested Navigation using Getx Flutter - Stack Overflow

    Sep 23, 2022 · You don't need to use GetNavigator to use nested navigators with GetX. You can use simply Navigator that comes from package:flutter/material.dart. Place the Navigator widget …

  8. Routing And Navigation With GetX In Flutter - C# Corner

    To handle navigation and routing, Flutter provides a built-in Navigator class. In this article, we'll explore how to use GetX to manage your app's routing and navigation, including how to …

  9. Mastering Navigation in Flutter with GetX: A Deep Dive

    Dec 13, 2023 · Bottom Navigation Bars: Easily implement bottom navigation with dedicated widgets and functions. Snackbars and Dialogs: Show informative messages and confirmation …

  10. Flutter bottom Navbar with binding using Getx - Stack Overflow

    Sep 9, 2022 · I use bottom navigation and Getx. In this way : myPresenter.setMainNavigationIndex(index); switch (index) { case 1: setState(() { …