1,497 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
50
views
How do I enable custom treatment of onBackpress in Android?
I have been going through all of the recommendations and none of them work. This is current code.
@Override public void onBackPressed() {
if (isCustomKeyboardVisible()) {
hideCustomKeyboard();
...
0
votes
0
answers
35
views
Back button callback not re-triggered after fragment recreation (rotation)
Context
I'm trying to intercept the default behavior of the back button to be able to add confirmation messages ("Are you sure you want to exit? [Save And Exit] [Cancel] [Exit]") on multiple ...
0
votes
1
answer
138
views
The Node.js application using the dotenv package fails to read environment variables from the .env file. As a result, the following error occurs:
C:\Users\user\Desktop\NexoGame-b>npm run server
> [email protected] server
> nodemon server.js
[nodemon] 3.1.10
[nodemon] to restart at any time, enter `rs`
[nodemon] watching path(s)...
3
votes
1
answer
5k
views
Flutter PopScope onPopInvokedWithResult not calling on pressing back button
I am using Popscope on my local authview- a screen where user enters a pin to enter the app. When user hit backbutton it is clearing the entered pin but does not close the app. It is the first screen ...
1
vote
1
answer
179
views
How Can I Reliably Hide a Bootstrap 5.3 Modal on Back Navigation in a Multi‐Page App?
I'm using a Bootstrap 5.3 modal as a preloader when a user submits a form in my multi‐page application. The modal shows while waiting for the server response and then the user is taken to a new page. ...
0
votes
1
answer
235
views
How to handle "previous/back" button when displaying a dialog with flutter web
When i display a modal dialog in Flutter Web, i would like to make the back button close the current dialog instead of go back to the previous route. After some search, i found PopScope but i can't ...
1
vote
1
answer
155
views
Problem Restoring PostgreSQL Database in Docker Container with Symfony
I'm developing a Symfony application to backup and restore databases. My application works fine on the Symfony server, but I'm facing issues when trying to use it with my dockerized setup.
Context:
I ...
-1
votes
1
answer
193
views
Android native Back button not working properly
I have an Android app developed in Flutter. My native Android (phone) BACK button is not working properly. no matter how many pages i visit, when i press BACK it doesnt return me to the previous ...
0
votes
0
answers
49
views
Hide jwt with angular
I have a question regarding the security of my application.
I’m not an expert, far from it, and I’ve been tinkering for months to make something acceptable, and now I’m nearing the end.
I’ve hosted my ...
0
votes
1
answer
105
views
How to read JWT token data with correct typing C#
I have a problem when reading the data saved in JWT, it is returning everything as a string, the correct thing would be to ensure that the returned values are in the correct typing, for example the ...
0
votes
1
answer
87
views
How to stop Loop Verification
being real I dont have a problem but I want to learn something that i didnt know, so I did a really simple word add and remove on Java, but when I want to verificate which word I have to remove, the ...
0
votes
4
answers
590
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 ...
1
vote
4
answers
1k
views
Phone back button close the app instead of going to prev page in flutter
i added pop scope to my code to go to prev page when the back button on android 3-button is pressed, but instead of going to prev page, it closed the app instead. I don't want to close the app.
this ...
0
votes
1
answer
75
views
Using custom Bootstrap Angular
I have a problem I was not able to solve concerning Angular. I created a Spring web using Moustache and Bootstrap. Now I want to do the front using Angular, but I am not able to implement it.
This is ...
0
votes
1
answer
1k
views
Flutter PopScope is not working while using popUntil
class MainScreen extends StatelessWidget {
const MainScreen({super.key});
@override
Widget build(BuildContext context) {
return PopScope(
canPop: false, // false or true
...