mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 17:57:40 +00:00
Fix RFC6068 mailto link for support on desktop plaftorm.
This commit is contained in:
parent
a5af60535e
commit
591edeca63
1 changed files with 2 additions and 2 deletions
|
@ -330,7 +330,7 @@ class SupportView extends StatelessWidget {
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
if (!isDesktop) {
|
if (!isDesktop) {
|
||||||
launchUrl(
|
launchUrl(
|
||||||
Uri.parse("mailto://support@stackwallet.com"),
|
Uri.parse("mailto:support@stackwallet.com"),
|
||||||
mode: LaunchMode.externalApplication,
|
mode: LaunchMode.externalApplication,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -367,7 +367,7 @@ class SupportView extends StatelessWidget {
|
||||||
text: isDesktop ? "support@stackwallet.com" : "",
|
text: isDesktop ? "support@stackwallet.com" : "",
|
||||||
onTap: () {
|
onTap: () {
|
||||||
launchUrl(
|
launchUrl(
|
||||||
Uri.parse("mailto://support@stackwallet.com"),
|
Uri.parse("mailto:support@stackwallet.com"),
|
||||||
mode: LaunchMode.externalApplication,
|
mode: LaunchMode.externalApplication,
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue