LaunchUri Constructor uno
Creates a new LaunchUri
Launch the default browser for an URL or open files with its corresponding default application
You'll find this trigger action in the Fuse.Launcher package, which have to be referenced from your uno project. For example:
{
"Packages": [
"Fuse",
"FuseJS",
"Fuse.Launcher"
]
}
<StackPanel Margin="20">
<Button Margin="10" Text="Go to Fuse Open">
<Clicked>
<LaunchUri Uri="https://fuseopen.com/" />
</Clicked>
</Button>
</StackPanel>
Note: you can pass any URI string to LaunchUri
, but how it is handled will depend on the target platform and particular device settings.
There are several common URI schemes that you can use on both Android and iOS:
http://
Other platform-specific URI schemes are known to be working fine, for example geo:<parameters>
launches Maps application on Android
and facetime:<parameters>
launches a Facetime video call on iOS.
More information on supported URI schemes: on Android and on iOS.
Creates a new LaunchUri
The number of seconds after the start of the trigger that the action should be performed.
hide
hide
hide