14,957 questions
-2
votes
0
answers
26
views
What are other ways to make Flutter map and navigation app work offline? [closed]
Is it really possible to make an offline map with navigation app using flutter? I've been trying to make this work, but I can't seem to figure it out.
0
votes
0
answers
39
views
TanStack Router - How to pass custom data like an object between routes?
I'm using TanStack Router v1 with file-based routing. After logging in, I want to pass an employee object to a new route like /menu/:employeeId.
Here’s what I’m doing after a successful login:
if (...
0
votes
0
answers
17
views
Expo navigation , useRouter error "expected dynamic type `int/double/bool/string"
I have an issue with expo-router navigation. I am using useRouter, and my app crashes when I try to navigate to some routes. Here is the error: (NOBRIDGE)
ERROR Warning: Error: Exception in ...
0
votes
0
answers
35
views
Android how to implement a pending action depending on state
I’m working on an android app where users can add products to a cart, but there’s a conditional flow based on whether a delivery address is selected or not:
1. If the address is already selected, the ...
0
votes
2
answers
56
views
Chrome doesn't keep history of a page that redirects prior to user interaction
I'm looking for info on a browser quirk and a possible workaround:
Navigating to a new page using any of the various methods which push the new URL onto the history stack:
window.location = '...'
...
-1
votes
0
answers
62
views
How do I remove (or close or dispose) current page from frame in WPF?
I have a MainWindow with some buttons for navigation. These buttons opens up a Page in a Frame and of course this page gets added to the Frame's navigation history.
Now let's say I have 6 open pages ...
1
vote
1
answer
40
views
When and how to use GoRouter in flutter?
I have a mobile app which uses GoRouter as a routing package. For a simple list/detail structure of any entity it is clean. Let's say we have 2 bottom naviation items.
GoRoute(
path: '/locations'
...
0
votes
1
answer
37
views
Microsoft PowerApps Table Lookup - Navigating to Different Screens Based on User Type
I'm having trouble getting this login page to work. It needs to take the user to a specific page depending on their credentials. There are 3 different tables for the different types of users.
This is ...
-3
votes
0
answers
37
views
How can I implement `navHostFragment` and `navController` in a project to manage and navigate fragments using Java? [closed]
How can I implement navHostFragment and navController in a project to manage and navigate fragments using Java?
0
votes
0
answers
35
views
How to add rounded corners and a mask to the interface using Transition in Compose Navigation?
As shown in the image, when transitioning between Activities in Android, the pages are automatically clipped to the device's rounded corners, and a gradually darkening mask is applied to the exiting ...
0
votes
0
answers
15
views
React Navigation error: “Couldn't register the navigator” even with correct NavigationContainer usage (Expo)
React Navigation error: “Couldn't register the navigator” even with correct NavigationContainer usage (Expo)
I'm building a mobile app with React Native (Expo) to manage clinical patients and ...
1
vote
1
answer
47
views
Open Android app at a specific Fragment from another Android app using deeplink
I am trying to apply developpers doc Create a deep link for a destination
I have two apps : appA and appB, and I want appB to open a specific Fragment of appA, on button click.
AppA has a MainActivity ...
0
votes
0
answers
29
views
GPS Track Navigation with MapKit?
I want to create a MKRoute from a list of MKMapPoints or coordinates. But apparently MKRoute can only be generated from a MKDirections request from Apple's servers.
The primary use of my app will be ...
1
vote
1
answer
28
views
'package:flutter/src/widgets/navigator.dart': Failed assertion: line 5859 pos 12: '!_debugLocked': is not true
I want to Edit items but facing !_debugLocked error.
SlidableAction(
onPressed: (BuildContext context) {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => ...
0
votes
1
answer
33
views
When I use navigation-compose to navigate to the second page, the first page disappears directly
I'm learning to use navigation-compose, which is a login page feature.
But I encountered a problem in the process of using it, I hope you can help me.
There is a flickering when the page switches, ...