Learn what Felgo offers to help your business succeed. Start your free evaluation today! Felgo for Your Business

Forums

OverviewFelgo 3 Support (Qt 5) › Always have bottom navigation bar

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #16320

    Kool

    Hi All,

    Looking at the Twitter and Component Showcase examples, I’ve noticed that, when switching from iOS to Android theme, the navigation bar at the bottom jumps from the bottom to a inside a menu button in the top left.

    Is there a way to always have the navigation bar at the bottom on all platforms?

    #16322

    Günther
    Felgo Team

    Hi Kool!

    Yes, depending on what look you are going for there are several options:

      Navigation {
        navigationMode: navigationModeTabs
        //
      }

    By setting the navigation mode to only tabs, the left menu is never used and on Android the native-styled tabs at the top are used.
    It is also possible to display these tabs at the bottom on all platforms with:

      Navigation {
        navigationMode: navigationModeTabs
        tabPosition: Qt.BottomEdge
    
         // ...
      }

    The third option is to use the iOS Theme for all platforms, which completely deactivates the Android-look.
    To  trigger the iOS look at app start for all platforms, use:

    App {  
      onInitTheme: {
        Theme.platform = "ios"
      }
      // ...
    }

    Best,
    Günther

Viewing 2 posts - 1 through 2 (of 2 total)

RSS feed for this thread

You must be logged in to reply to this topic.

Qt_Technology_Partner_RGB_475 Qt_Service_Partner_RGB_475_padded