Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I enable Deep linking in WebAssembly for Uno Platform

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:

  • https://www.troublefreepool.com/blog/poolmath/
  • https://www.biyee.net/default.aspx
like image 365
joMu Avatar asked Apr 29 '20 14:04

joMu


1 Answers

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

like image 186
Jérôme Laban Avatar answered Nov 08 '22 11:11

Jérôme Laban