1,644 questions
2
votes
0
answers
135
views
How do i intercept the Back navigation button/gesture in a (Delphi 12) Android 16 app?
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,...
0
votes
1
answer
52
views
Browser back button exits Single Page App despite pushState() on Chrome only
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:
...
0
votes
3
answers
95
views
android onBackPressed button navigation crash
i want to make a back navigation logic using this code :
backBtn.setOnClickListener(v -> {
onBackPressed();
});
otherUsername.setText(otherUser.getUsername());
but it seem that the ...
0
votes
3
answers
351
views
Flutter Back button should navigate to Home Page
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 ...
0
votes
1
answer
285
views
How to detect if a route exit was triggered by browser back button or context.go in Flutter using GoRouter and StatefulShell?
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 ...
1
vote
1
answer
134
views
Migrating from BackRequested UWP to WinUI-3
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 ...
1
vote
0
answers
78
views
How can I handle hardware back button navigation in a React Native Wizard component without modifying the child component?
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 ...
0
votes
1
answer
194
views
Laravel Livewire 3 overwrites HTTP response headers
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)
{...
1
vote
1
answer
106
views
ERROR TypeError: Cannot read properties of undefined (reading 'setOnModelChange') at NgxCurrencyDirective.registerOnChange
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 ...
0
votes
0
answers
71
views
Can't remove back button title, nor change tint color when pushing UIViewController from SwiftUI view via UIViewControllerRepresentable
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 ...
1
vote
1
answer
147
views
Call OnBackButtonPressed() in ComponentBase class in Maui.Net
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 ...
0
votes
1
answer
126
views
Browser back button doesn't work with youtube videos
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 ...
1
vote
1
answer
74
views
onBackPress for dialogFragment in kotlin android
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 ...
0
votes
1
answer
64
views
When I click on logout button I still can go back to previous page using browser's back button [duplicate]
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 ...
1
vote
1
answer
87
views
Tkinter back and forward buttons re: visited history
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 ...