Indoor Map Navigation for flutter - flutter

I am trying to build an app that has indoor navigation with routes. Do flutter have packages for this? See sample picture below from dentreality.com
As you can see there is a route that guides the user on what isle is the selected item.
Thanks!

Related

how can i achieve same nested navigation in flutter via Getx?

Here is a video of navigation in which each tab has the sub-children and then return back to that tab it contains the last page and if we click again on that tab it takes us to the parent page. This app is built with React-Native as in react-native its simple to implement via stack navigator but how is this possible via Getx routing
I have tried IndexedStack in my app bt unable to acheive same functionality. but its not giving me same functionality i want to do it via named routes
Stop using GetX and do it with flutter NavigationBar and nested navigation flow

How to implement figma's smart animate option in flutter?

I designed three onboarding pages in figma which contains information about my app, while wireframing the app, I added smart animate to the three pagesThis is the first onboarding page
The second one
The third one
The smart animate enables smooth transition from each page to each page
While using flutter, I created 3 different pages for each onboarding pages and added a navigation widget to each button
But the navigation from each page to each page was stacked
I also tried using gesturedetection() onhorizontalswipe still same result
The pages navigate in a stacked way totally different from figma's smart animate option.
Is there anyway I can do this?
I'll appreciate any help
Thanks in advance.
From what I understood,
You want to build an onboarding screen with some animation. But the pages are being stacked.
It is happening because you are navigating to different pages with each button press. That is very bad practice for building an onboarding screen.
You should be using a PageView widget that allows you to transit between pages without navigating to them.
If you want to use a plugin that suits you, I would recommend introduction_screen

How to Create side bar menu with navigation in flutter web

I am new to flutter and working on a web app, I want side bar menu similar to any website. I search a lot but some are using getx for navigation and some are using navigationrail
I don't want to use both of these and neither any other package. Is it possible to create simple side menu bar without using these.
You can use this package easy_sidemenu just define a PageController and you're ready to go

How can we implement a hover effect on navigation rail in flutter?

I am building a flutter application for web and desktop. I have used navigation rail for routing, but i can't figure out how to add a hover effect when the mouse is over a particular rail destination. There is a property to change the color depending upon which rail is being selected but i want to have a hover effect for the rail as well. How can i achieve this in flutter ?
Any help will be appreciated. Thank you.

How to do infinite navigation with PageView builder?

I am developing a kind of Twitter with Flutter, and I am encountering a problem with pageView.builder.
I want to create the same profile navigation that Twitter and Instagram are using : I mean I have a NestedScrollView which is my FeedPage and it contains a List of post tiles.
The feature I want is when I click on a tile, pageView build the user profile associated and show up as Twitter does. I used a Navigator.push whichs leads to the user concerned but it doesn't keep my BottomAppBar.
Images are better than words : Illustration
Thanks for your futur help and have a nice day !
There is a package in the pub to have a persistent bottom navigation: https://pub.dev/packages/persistent_bottom_nav_bar.