Skip to main content
Filter by
Sorted by
Tagged with
2 votes
0 answers
133 views

How can i intercept the Back navigation button/gesture in the latest Delphi and Android versions? In the past, with Delphi 11 and Android 12 (maybe 13), i used vkHardwareBack in the Form OnKeyUp event,...
Hawkins's user avatar
  • 21
0 votes
1 answer
52 views

I’m working on a legacy single-page application that uses AJAX to load different internal views. After recent browser updates the Browser Back Button stopped behaving as expected. The current problem: ...
z3po's user avatar
  • 149
0 votes
3 answers
95 views

i want to make a back navigation logic using this code : backBtn.setOnClickListener(v -> { onBackPressed(); }); otherUsername.setText(otherUser.getUsername()); but it seem that the ...
Kahiry363's user avatar
0 votes
3 answers
350 views

After checking various pages and ChatGPT, I need to ask for help here. I want to have a logic that once I am logged into the app and navigate through the pages, the back button should always navigate ...
rod-san's user avatar
  • 45
0 votes
1 answer
283 views

I'm working on a Flutter web project using GoRouter with a StatefulShell for route management. I want to differentiate between route exits triggered by the browser's back button and programmatic ...
Husam Fathi's user avatar
1 vote
1 answer
133 views

In a UWP project (intended for PCs and tablets) I implemented a BackRequested, so that tablets can launch the 'back to previous page action' with the default button offered by tablets, via the ...
ULC's user avatar
  • 31
1 vote
0 answers
78 views

I'm working on a React Native project where I have a custom Wizard component that allows users to navigate through different steps in a form. The Wizard component is used within a parent component ...
Aasu Parekh's user avatar
0 votes
1 answer
194 views

We have this middleware in my app because internal security asked us to overwrite these response headers. class NoCacheControlHeaders { public function handle(Request $request, Closure $next) {...
Nebster's user avatar
  • 914
1 vote
1 answer
106 views

Expectation is on click of browser back it should navigate to websites homepage but instead screen got stuck and in console below error is printed. ERROR TypeError: Cannot read properties of undefined ...
stormbreakR's user avatar
0 votes
0 answers
71 views

I have a SwiftUI NavigationView and a SwiftUI view displayed in SwiftUI. The navigation link refers to a UIViewControllerRepresentable wrapping a UIViewController. I have been unable to remove the ...
David's user avatar
  • 2,810
1 vote
1 answer
147 views

I am building a mobile app (Android and iOS) using .NET MAUI Blazor Hybrid with .NET 8. For the frontend UI, I am using MudBlazor, and I have implemented MudDialog in several places. My issue is that ...
Taimur Lak's user avatar
0 votes
1 answer
125 views

I am facing an issue where when I upload any YouTube video on a page or upload multiple videos in a carousal (AEM), the browser button just doesn't work. It doesn't take you to the previous page. Also ...
rasleen's user avatar
1 vote
1 answer
74 views

This is a dialog fragment that inflates a xml file. This dialog fragment will then be used in another fragment as a pop up. I am trying to override the back button where the back button should not ...
lucas lootan's user avatar
0 votes
1 answer
60 views

I have a servlet where i validate the login using POST and logout using GET. So, i want when i click on logout button, i cannot go back to previous page because the session is terminate. But it did ...
MUHAMAD ZAINUL SHAHMY ZAINI's user avatar
1 vote
1 answer
87 views

My app displays details for one person at a time based on a current_person_id and other information related to that person which is stored in a database. I wanted to change the details displayed based ...
Luther's user avatar
  • 574
1 vote
2 answers
300 views

When i swipe back, if nothing is changed it should just go back. if i have changed some personal data (for example, first name or last name) and I swiped back, it should stay in PersonalDataScreen and ...
Elmar's user avatar
  • 43
1 vote
4 answers
1k views

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

This is my js code first i have tried if someone made changes in fields then this modal shows if i tried to go other pages without saving. That's work fine for me. But on browser back button a problem ...
Anurag's user avatar
  • 85
1 vote
1 answer
1k views

In my Angular app(version 13), I have three components: A, B, and C, each corresponding to routes route-A, route-B, and route-C, respectively. Consider a routing scenario where I route from route-A to ...
Md. Rubel Mia's user avatar
1 vote
0 answers
71 views

Even when I've just realised that action bar back button is not completely necessary in my app (because access to all screens are already present in footer menu), I need to understand why it is making ...
Diego Perez's user avatar
  • 3,024
0 votes
1 answer
29 views

I am developing an android app with a few fragments. activity_main.xml: <?xml version="1.0" encoding="utf-8"?> <androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:...
dkog835's user avatar
1 vote
0 answers
49 views

My main activity is this: class MainActivity extends AppCompatActivity { ActivityMainBinding uiBinding; @Override protected void onCreate(Bundle savedInstance){ super....
anta40's user avatar
  • 6,815
2 votes
2 answers
1k views

I'm learning navigation in React Native, and can't figure out way how to conditionally use one Back Button. Wanted behaviour would be like this - if user navigate between screens, he can press Go Back ...
Rob's user avatar
  • 48
0 votes
1 answer
1k views

We have overridden the OnBackButtonPressed event for our shell application so the Android device back button will use custom code. We are only dealing with the Android device back button at this time....
George M Ceaser Jr's user avatar
0 votes
1 answer
105 views

To override the back button's action in API below 33, one could use @Override public void OnBackPressed(){ finish(); } Now that this has been deprecated, I am trying to get the ...
Hussain Akbar's user avatar
2 votes
1 answer
2k views

I want to disable or at least change the page that the app return to when pressing the backward button on web browser, Willonscope used to work but now that it is deprecated, I tried Popscope but it ...
Flutter Beginner's user avatar
0 votes
1 answer
156 views

I am trying to add a back button to the top-corner of the left page, with a triangular form. Here is a reproducible example of the Shiny app: library(shiny) ui <- fluidPage( tags$head( tags$...
GaB's user avatar
  • 1,134
1 vote
0 answers
106 views

I am instantiating a NavigationBar but navigating from a tab's base page to a detail page within (drilling down from a summary to detail) makes the detail go full screen instead of remain within the ...
cmjordan's user avatar
  • 194
1 vote
1 answer
86 views

How can I use WillPopScope with WebViewWidget in Flutter? I only found examples with WebView. With WillPopScope I would need that, when the back button is pressed, it returns to the page https://www....
Mattia Trombon's user avatar
0 votes
0 answers
491 views

Here is my ymal file, name: dtlive description: A new Flutter project. # The following line prevents the package from being accidentally published to # pub.dev using `flutter pub publish`. This is ...
Jitendra Modi's user avatar
0 votes
0 answers
31 views

I have a Gridview in asp.net that shows filtered information from a DB. The grid has a link button that directs to an Information page. When the user changes the data at the information page (which ...
Spike Colman's user avatar
0 votes
1 answer
2k views

Here is my situation, I have a Vue 3 app using vue-router. On certain pages in my app, there is a back button. If a user navigates to one of the back button pages the page directly, for example /users/...
derek scott's user avatar
0 votes
1 answer
215 views

I dont know how to describe the problem by codes, but my hardwareBackbutton work normally for android devices with OS < 10. Another cause minimize app. With pop() function from navigation, it's ...
famfamfam's user avatar
  • 552
1 vote
0 answers
83 views

I am using Cordova 11.1.0 to build an android app. I am trying to override the backbutton event to ignore the action completely so that it doesn't go back to the previous page. This the code I am ...
Abhilash Raj's user avatar
2 votes
1 answer
1k views

It seems like the composable NavHost from androidx.navigation:navigation-compose:2.5.3 does not satisfy navigation principles for back-button navigation as outlined here: https://developer.android.com/...
Gamer2015's user avatar
  • 341
0 votes
1 answer
85 views

I am developing a flutter application. When I press the default back button, it brings me to the login page. Why? Row( children: [ SizedBox( width: 20, ), ...
Adhithyan Krishna's user avatar
0 votes
1 answer
2k views

In my .NET MAUI App, I navigate to one of my ContentPages via: await Shell.Current.GoToAsync(nameof(ManagePeopleItem), true); The page is registered in AppShell.xaml.cs via: Routing.RegisterRoute(...
OXO's user avatar
  • 1,216
0 votes
1 answer
409 views

I am trying to get the custom back button in Javascript on the webpage to work when the webpage is opened in the android webview. The phone's standard back button on the bottom of the screen works ...
Treklov's user avatar
  • 41
3 votes
0 answers
533 views

We all know about WillPopScope. Example: return WillPopScope( onWillPop: () async => return false, child: Scaffold(...)); That works fine in most cases but not in mine. I'm ...
MetaStack's user avatar
  • 3,848
0 votes
0 answers
21 views

I am trying to 'remove' the previous views after navigating more than 2 tabs away from the 'ContentView'. Currently, I am running into double 'back' options. One will take me back 1 view and the other ...
Isaac Condrey's user avatar
0 votes
0 answers
262 views

On mobile, my modals cover the whole screen. They look exactly like whole new web pages. This leads to users getting confused. They expect to be able to press the back button and have the modal close. ...
Daniel T.'s user avatar
2 votes
0 answers
258 views

working on single page appliction trying use popstate to navigate back to previous page but I have to click twice to take me back. I want to make it happen for one click. console showing for each ...
Meysam's user avatar
  • 21
1 vote
1 answer
554 views

Here I override handleOnBackPressed() method: Log.d("Fragment", "onViewCreated") requireActivity().onBackPressedDispatcher.addCallback(viewLifecycleOwner) { ...
Viktor's user avatar
  • 23
0 votes
3 answers
421 views

how can I show a dialog to stay or leave the current page with Vaadin 23, when a user clicks back button on browser? Regards
Hakan Akkurt's user avatar
0 votes
1 answer
610 views

I've made a back link to take customer from single product back to product display. I need to know how to give this code a class to make it a button. The code is add_action( '...
Web Honey Digital's user avatar
0 votes
0 answers
81 views

I'm making a webpage and I'm really new to this. I have a preventBack function that works great, but I want a certain page (specifically the name is restart.html) not to be affected by this script. I ...
Denis Sebastian Prundus's user avatar
0 votes
2 answers
5k views

I'm developing a PWA and there is a conflict between a library I use for loading and back button The only thing I need to detect is whether user clicked back button in their mobile (PWA) or not. Then ...
Danny's user avatar
  • 1
0 votes
0 answers
1k views

I am creating a chrome extension which embeds an iframe on a website and it works well except when a user clicks on the iframe (or anything inside the iframe) and then tries to use the back button to ...
Randusr's user avatar
  • 59
0 votes
2 answers
7k views

When browser back button clicked the app redirects to the first url of the app. For example, current route is localhost:3000 then I'm going to home localhost:3000/home and then to localhost:3000/...
1baz's user avatar
  • 198
0 votes
0 answers
73 views

I am trying to reload the latest data from a database when the browser back button is clicked. However, even though the following code runs, and the data has already been updated in the database, the ...
mikeym's user avatar
  • 6,581

1
2 3 4 5
33