Device BackButton

Answered
0
1

i have struggled very much trying to implement a device Backbutton in my wisej 4. 0.9 Hybrid app in vs 2026, who can help to solve this

Attachment
  • You must to post comments
Best Answer
1
1

Hi James,

this has been added to the latest Wisej.NET Hybrid release (4.0.10).

Best regards
Frank

  • You must to post comments
0
0

This will be added in the next release. In order to use it make sure you have:

<application android:enableOnBackInvokedCallback=true />
 in your AndroidManifest.xml file.

 

Then you can use it like so:

Device.Application.BackRequested += (s, e) =>
{
 // Handle Android system back navigation here.
}
  • You must to post comments
Showing 2 results
Your Answer

Please first to submit.