1,150 questions
1
vote
1
answer
108
views
Audio Output Device Getting and Selection
I am working on a video conferencing solutions web app and I am having issues while fetching the audio output devices on mobile browsers.
I am able to get audio output devices on laptop browsers ...
0
votes
0
answers
66
views
Flutter persistent canvas widget between navigation without redraw/rebuild that has to be part of the transition animation
Each screen in my app has this structure
Scaffold(
backgroundColor: Colors.red,
// params,
body: Stack(
alignment: Alignment.center,
children: [
// Remains ...
0
votes
0
answers
61
views
Unable to navigate when using Navigator Library in SwiftUI
I am trying out Navigator, and following NavigatorDemo project. I am building a scenario, where flow will be:
Onboarding -> Login -> Tab Views
User can also move like:
Onboarding -> Login -&...
2
votes
5
answers
466
views
How do I navigate to a new screen and return data back in Flutter?
I'm trying to navigate from one screen to another in my Flutter app and return some data when the second screen pops. I want to do this in a clean, idiomatic way using Flutter's navigation system.
...
1
vote
1
answer
47
views
How Can I Solve Flutter and Firebase Navigator Error
I am trying to create a login screen in my Flutter application with Firebase. After the login information is verified in Firebase, it should redirect to the homepage. But I encounter an error in the ...
0
votes
1
answer
474
views
Can't find Filter Option during Search Box of Database Navigator Panel in DBeaver
I am trying to search a specific table name or column or view name in my database in DBeaver , but it is by default Filter connections by name only , Database Navigator Only Showing Filter Connections ...
1
vote
2
answers
76
views
How to put the other div at the bottom of navigator
I'm looking for help, I can't move the div of the logout inside of navigator; I want it to be at the end/bottom of my navigator. Please, I'm also curious what is the solution.
Thank you, I will ...
0
votes
2
answers
26
views
Show Error Recursive Function Navigator.push Flutter
I have a ListView.builder
That gets its data from
EnsaioItemModel ensaioitem = snapshot.data![index];
In the onTap: ()onTap: ()
I call the form to edit data
await Navigator.push(
context,
...
0
votes
3
answers
61
views
Make a recursive function with Navigator.push flutter
I have a ListView.builder that gets its data from:
EnsaioItemModel ensaioitem = snapshot.data![index];
no onTap: ()
I call the form to edit the data:
await Navigator.push(
context,
...
1
vote
0
answers
81
views
Dash / Plotly: 3D camera resets on every update on mobile (Android/iOS) despite uirevision="lock"
I'm building a Dash app with a 3D plot (dcc.Graph + plotly.graph_objs) that includes interactive features like cube overlays and filtering. The 3D scene works well on desktop — but on mobile (Android &...
1
vote
1
answer
47
views
Navigator.of in flutter
hi guys I am not able to navigate in my flutter pages:
when I run this command on FLOATINGACTIONBUTTON onPressFunction (
onPressed: () {
Navigator.of(context).pushNamed('/new_note');
...
0
votes
0
answers
34
views
Anaconda Navigator installed but no cmd or prompt terminal
I installed the Anaconda Navigator but the root (or any virtual environment that I create through the Navigator) lack a cmd or prompt terminal that I could use, so I cannot create environments from ...
0
votes
0
answers
39
views
Javascript saving DOM via navigator.share
I'm using a simple html-page with JS. I use it offline both on Windows and Android. I use the following function, to save the changes - it downloads it (DOM) as a new file.
//downloading als HTML file
...
1
vote
0
answers
47
views
How can I paste text+url to a Flutter App from Web Share API?
When I copy data (with text, title and url) using the Web Share API (from public websites) and I paste it in a TextField on Flutter - it pastes only the text.
If I paste it in other apps (like ...
0
votes
0
answers
26
views
Is there a way to customize the pop animation of the current page instead of the animation defined by the previous page?
In flutter, the pop animation is generally the reverse of the push animation. Now I have this requirement, I have a page, and I want it to be displayed in whatever situation, and I want it to pop out ...
1
vote
0
answers
87
views
navigator.share not working in android(wirking in vivo and samsung devices) working fine on ios devices
While sharing only image description is not coming, and when i share the URL to the image description is working. I want Image + description. I tried using blob too but there was no effect. On sharing ...
0
votes
0
answers
43
views
WebOTP API Auto Read fails after Denying first time
I have a hook to read OTP from sms in nextJS
import { useRouter } from 'next/router'
import { useEffect } from 'react'
const useAutoReadOtp = (handleSetOtp = (_: string) => {}, enabled = true) =&...
0
votes
4
answers
3k
views
Expo React Native Error With Navigator, Looks like you have nested a 'NavigationContainer' inside another
I recently upgraded from SDK 51 to SDK 52. I had to upgrade several libraries, and before my code worked fine, what I find after upgrading, is that the routing, has been broken, and gives me an error, ...
1
vote
0
answers
55
views
Invoke logout function when device's network changes (i.e. connect to other wifi network or so)
I’m trying to call a logout function when the network changes in my React application. However, as soon as I log in, my useEffect hook automatically triggers, causing an unintended logout, even though ...
0
votes
2
answers
50
views
Why Navigator push seems to be not working in small snippet
This seems like it should work, doesn't work in dartpad either.
Usually I use combination of named routes and the static navigator push and pop and I can get the behavior I want for multiple pushes, ...
1
vote
2
answers
1k
views
Can't read clipboard in Telegram WebApp: Permissions policy blocking Clipboard API
I'm developing a web application inside Telegram's WebApp (Mini App), and I'm trying to read or write text to the clipboard using the Clipboard API. However, when I try to execute navigator.clipboard....
0
votes
0
answers
61
views
Android DOMException: Could not start video source. (No active stream)
I browsed other question like this, but couldn't find any working solutions.
When I want to access a videodevice I get a DOMException error and in other questions the answers were to stop the previous ...
1
vote
0
answers
38
views
navigator.clipboard.writeText insert \r before \n
When I use navigator.clipboard.writeText in windows, just like
navigator.clipboard.writeText('a\nb');
Then read from clipboard
navigator.clipboard.readText();
The result will become to a\r\nb. How ...
0
votes
4
answers
213
views
Flutter Navigator not working when navigating to Login or Register page from menu bar
I'm developing a Flutter application and I'm trying to navigate to a LoginPage or RegisterPage using Navigator.push when an item from the PopupMenuButton in the app bar's menu is selected. However, ...
1
vote
1
answer
79
views
Another exception was thrown: Could not find a generator for route RouteSettings("/routename", null) in the _WidgetsAppState
I just started learning flutter. I was creating a guide app for a game. And I encountered this error.
Another exception was thrown: Could not find a generator for route RouteSettings("/bo3morgmap&...
1
vote
0
answers
66
views
navigator.mediaDevices.getUserMedia, No camera feedback when using mobile browsers but works perfectly in Desktop browsers
When accessing thru desktop browser its working locally and using https:// connection
but when im using mobile (android and IOS) browser (safari for IOS)(chrome and brave) for testing no feedback ...
-1
votes
1
answer
120
views
Fetching Location Via JavaScript Geological Api
I am developing a map where I track user's location via navigator.geolocation.watchPosition towards it's destination. Now what i want is to track location of the user in real-time when he has logged ...
2
votes
1
answer
203
views
Javascript media devices web cam not turning off
I am using media devices to access web cam in my web app. I've been using this part of code to stop any media devices which stopped working lately. I've tried querying GPT but none of the solutions ...
2
votes
0
answers
536
views
Is there an alternative Network Information API (navigator.connection) that will work for Safari and Firefox?
I'm currently trying to obtain network connection details using the navigator.connection API upon clicking a button. However, I've encountered an issue where this API does not work on Safari and ...
0
votes
1
answer
716
views
Error accessing media devices: DOMException
brand new to react and am trying to get access of camera and mic but i ran to this error:
Error accessing media devices: DOMException { line: 1, column: 161443, sourceURL: "https://sample.com/...
1
vote
0
answers
173
views
The navigator.share() method "title" is taking the "text" data on IOS
I'm implementing a feature, which is using the navigator.share API.
While the navigator share is available, I only want the text property, so I only specified this one in the shareData.
On IOS only, ...
1
vote
1
answer
302
views
Not able to use the right side drawer navigation in react native
So I am new to react native and have been trying to implement drawer navigators.
The issue I am facing is that when I click on the icon on the right side I want the right side drawer to open but it ...
0
votes
4
answers
582
views
Navigator.pushReplacement after next screen still has back button, the new screen overrides on last screen
I want to navigate to next screen then do not back to any screen, but when I use Navigator.pushReplacement my app has back button. I mean, arrow back key still work. I want to go to next screen ...
0
votes
2
answers
85
views
how i can use search delegate correctly
i create search icon in appbar to open search and when i click on it there is error appear
the error is "Navigator operation requested with a context that does not include a Navigator"
and ...
1
vote
2
answers
2k
views
My Anaconda Navigator wont launch from cmd or manually
yesterday, i uninstalled my anti virus and after that , the navigator is not launching any more.
i tried going to the script file and updating my conda and navigator.
however the navigator update gets ...
0
votes
2
answers
275
views
Navigation on flutter on debug in Visual Studio Code
I'm building an application in flutter, I build two pages the main page and a configuration page, after that I added two buttons to the main page, one of then to navigate to the configuration page ...
0
votes
0
answers
685
views
Are there any replacements for recently deprecated Navigator.vendor?
I recently migrated my Angular app from v14 up to v17. While I was doing this, I realized that window.navigator.vendor (along with all the other NavigatorID properties) are now deprecated and it is ...
0
votes
0
answers
577
views
Get microphone access for entire browser using chrome extension
i have a chrome extension with manifest v3 and in that i want that when user clicks on a button in popup then user should see a prompt to allow microphone access across entire browser and this should ...
0
votes
1
answer
125
views
Navigator not defined
I am working on a streaming project using Reactjs and Nodejs. I use peerjs and Webrtc for the streaming function and constantly having issue with: Navigator is not defined.
I am not sure how to fix it....
2
votes
0
answers
71
views
What does the accuracy property mean in the GeolocationCoordinates object on Chrome
When I run this code
navigator.geolocation.getCurrentPosition((position) => {
console.log(position)
})
I get this object
{
coords : GeolocationCoordinates
accuracy : 11.479
...
0
votes
1
answer
245
views
Share API with files returns "DOMException: Permission denied" on Chrome
VCARD file is properly formated.
navigator.share works as expected when removing the file key.
navigator.canShare returns true when testing the API on a VCARD/.VCF file.
When actually trying to share ...
1
vote
2
answers
102
views
How to change the color of the line which seperates the bottom tab and the content of my screen? React Native Tab navigator
I have a react native app and want to change the color of the seperator from my bottom tab navigator.
Also can I set the background color somehow to transparent. Right now I set it to the same color ...
1
vote
0
answers
49
views
Is it possible to have all the Drawer Navigator screens having bottom tabs visible?
I am trying to implement Stack, Tab and Drawer navigators alltogether. I have a Profile screen inside the bottom tabs, which is a stack navigator component. When I open it from bottom tabs, the screen ...
0
votes
0
answers
192
views
How to correctly implement passkeys for web?
No passkeys available
I have a django app and I'm trying to implement passkeys login. Initially user signs up with password and then registers a passkey using either a PC or a phone. When I register ...
0
votes
0
answers
88
views
How to trigger a pop callback function after the app is restored and the second route is popped?
The issue is I do not have the value yet when the app gets killed. Imagine such a scenario:
User is on route A.
User navigates to route B (route stack is now [A, B])
User moves the app into the ...
0
votes
0
answers
37
views
Why the first navigator push stutters in flutter?
I'm creating a web application with flutter and have quite a small static second page. I'm using this code upon pressing a button to move to the second page:
void openInfoScreen() async {
...
2
votes
1
answer
1k
views
Not able to share an image with text using Navigator.share
I want to share an image with a caption. Here I have the code which generates an image dynamically using the html-to-image plugin.
However, when I share the image (WhatsApp, Facebook) the text is ...
0
votes
3
answers
82
views
BottomNavigationBar with Navigator
I just want to know, can I make bottomnavigationbar reusable, because what i saw in the other similar problem is just they use list of screen and then using scaffold that it makes cannot be reusable ...
0
votes
1
answer
484
views
how to know the current screen in Flutter?
I'm making a chat app and i want to send push notifications to an user only if he is not in the chat screen, so i need to know the current screen or path
I tried saving in state the name of the screen ...
2
votes
1
answer
948
views
navigator.share() throw DOMException: Permission denied even on mobile
I have a NextJS app that fetches an API and receives a blob image.
Everything works correctly and I can see the image on the browser with the <img src="blob:https://myurl.com/blob-id">
...