9

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:

Jérôme Laban
  • 5,224
  • 3
  • 20
  • 17
joMu
  • 103
  • 3

1 Answers1

3

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

Jérôme Laban
  • 5,224
  • 3
  • 20
  • 17