Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
108 views

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 ...
Mayank Kumar's user avatar
0 votes
0 answers
66 views

Each screen in my app has this structure Scaffold( backgroundColor: Colors.red, // params, body: Stack( alignment: Alignment.center, children: [ // Remains ...
Kirill's user avatar
  • 1,569
0 votes
0 answers
61 views

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 -&...
Abu Bäkr's user avatar
  • 343
2 votes
5 answers
466 views

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. ...
Navneet Panchayan's user avatar
1 vote
1 answer
47 views

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 ...
Zafer's user avatar
  • 21
0 votes
1 answer
474 views

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 ...
Abhinav Sahu's user avatar
1 vote
2 answers
76 views

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 ...
ecaeP's user avatar
  • 21
0 votes
2 answers
26 views

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, ...
Mateus's user avatar
  • 1
0 votes
3 answers
61 views

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, ...
Mateus's user avatar
  • 1
1 vote
0 answers
81 views

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 &...
Brell's user avatar
  • 55
1 vote
1 answer
47 views

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'); ...
appdev's user avatar
  • 15
0 votes
0 answers
34 views

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 ...
Fernando Igoa's user avatar
0 votes
0 answers
39 views

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 ...
drapfel's user avatar
1 vote
0 answers
47 views

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 ...
Bic's user avatar
  • 11
0 votes
0 answers
26 views

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 ...
Canplayer's user avatar
1 vote
0 answers
87 views

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 ...
Brijesh Savaliya's user avatar
0 votes
0 answers
43 views

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) =&...
harsh's user avatar
  • 1
0 votes
4 answers
3k views

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, ...
HelloImIulixx's user avatar
1 vote
0 answers
55 views

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 ...
Ahsan Iftikhar's user avatar
0 votes
2 answers
50 views

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, ...
L1ghtsp33D's user avatar
1 vote
2 answers
1k views

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....
ecomnazar's user avatar
0 votes
0 answers
61 views

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 ...
PingWinLqD's user avatar
1 vote
0 answers
38 views

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 ...
Senasiko's user avatar
  • 109
0 votes
4 answers
213 views

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, ...
Pugazhendhi M's user avatar
1 vote
1 answer
79 views

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&...
morybuzz's user avatar
1 vote
0 answers
66 views

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 ...
Kharl John Deguma's user avatar
-1 votes
1 answer
120 views

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 ...
Adil Asif's user avatar
2 votes
1 answer
203 views

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 ...
Floky99's user avatar
  • 744
2 votes
0 answers
536 views

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 ...
Snooky's user avatar
  • 31
0 votes
1 answer
716 views

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/...
alireza javanmardi's user avatar
1 vote
0 answers
173 views

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, ...
Jean Mary's user avatar
1 vote
1 answer
302 views

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 ...
abcd's user avatar
  • 11
0 votes
4 answers
582 views

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 ...
Abdulmateen Maher's user avatar
0 votes
2 answers
85 views

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 ...
Mahmoud Ali's user avatar
1 vote
2 answers
2k views

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 ...
1010_Sayantan Sen's user avatar
0 votes
2 answers
275 views

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 ...
Milton Calderon's user avatar
0 votes
0 answers
685 views

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 ...
IMeyers20's user avatar
  • 241
0 votes
0 answers
577 views

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 ...
Samridhi Kumari's user avatar
0 votes
1 answer
125 views

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....
Tyler Chen's user avatar
2 votes
0 answers
71 views

When I run this code navigator.geolocation.getCurrentPosition((position) => { console.log(position) }) I get this object { coords : GeolocationCoordinates accuracy : 11.479 ...
ChannelJuanNews's user avatar
0 votes
1 answer
245 views

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 ...
user avatar
1 vote
2 answers
102 views

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 ...
Felix's user avatar
  • 15
1 vote
0 answers
49 views

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 ...
JeremyFc's user avatar
  • 224
0 votes
0 answers
192 views

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 ...
moddayjob's user avatar
  • 708
0 votes
0 answers
88 views

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 ...
davdog00's user avatar
  • 213
0 votes
0 answers
37 views

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 { ...
Sprowk's user avatar
  • 427
2 votes
1 answer
1k views

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 ...
Manish Sharma's user avatar
0 votes
3 answers
82 views

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 ...
PACE's user avatar
  • 15
0 votes
1 answer
484 views

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 ...
Erick Galván's user avatar
2 votes
1 answer
948 views

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"> ...
NicoCaldo's user avatar
  • 1,699

1
2 3 4 5
23