Any clue or direction to implement URL deep linking in Uno Platform for WebAssembly?
I saw it is implemented in following projects that can be found on https://platform.uno/showcases/
Projects:
Any clue or direction to implement URL deep linking in Uno Platform for WebAssembly?
I saw it is implemented in following projects that can be found on https://platform.uno/showcases/
Projects:
Deep linking can be done through the LaunchActivatedEventArgs.Arguments
of the Application.OnLaunched
method override.
You'll find the query string part of the browser's current address, so for :
https://example.com/?test=1234&test2=5678
You'll get:
test=1234&test2=5678