* [pve-devel] [PATCH pve_flutter_frontend] fix: ios: update welcome screen text and add aSPICE client app store link
@ 2025-11-19 14:45 Shan Shaji
0 siblings, 0 replies; only message in thread
From: Shan Shaji @ 2025-11-19 14:45 UTC (permalink / raw)
To: pve-devel
On the welcome screen there was a link which takes the users to the play
store to download the Opaque app. However for iOS the link needs to be
different. Update the links to fix the issue.
Also we do support VNC through noVNC so updated the text as well.
Signed-off-by: Shan Shaji <s.shaji@proxmox.com>
---
lib/utils/links.dart | 3 +++
lib/widgets/firstWelcomeScreen/pve_welcome_faq.dart | 11 ++++++++---
2 files changed, 11 insertions(+), 3 deletions(-)
diff --git a/lib/utils/links.dart b/lib/utils/links.dart
index 3c1797e..22bc598 100644
--- a/lib/utils/links.dart
+++ b/lib/utils/links.dart
@@ -20,4 +20,7 @@ class Links {
'https://pve.proxmox.com/wiki/Proxmox_VE_Mobile_Companion_Data_Protection');
static final bugzillaUri =
Uri.parse('https://bugzilla.proxmox.com/enter_bug.cgi?product=pve');
+ static final aSpiceClient = Uri.parse(
+ "https://apps.apple.com/app/id1560593107",
+ );
}
diff --git a/lib/widgets/firstWelcomeScreen/pve_welcome_faq.dart b/lib/widgets/firstWelcomeScreen/pve_welcome_faq.dart
index d1eb9d0..b34c4f5 100644
--- a/lib/widgets/firstWelcomeScreen/pve_welcome_faq.dart
+++ b/lib/widgets/firstWelcomeScreen/pve_welcome_faq.dart
@@ -1,3 +1,5 @@
+import 'dart:io';
+
import 'package:flutter/material.dart';
import 'package:url_launcher/url_launcher.dart';
import 'package:pve_flutter_frontend/widgets/firstWelcomeScreen/pve_welcome_common.dart';
@@ -37,19 +39,22 @@ class PveWelcomePageFAQ extends StatelessWidget {
),
const PveAnswer(
text:
- "Spice is currently supported. We plan to integrate VNC in the future."),
+ "Spice is currently supported, and we also support VNC through noVNC." ),
const PveQuestion(text: "Which Spice client works?"),
const PveAnswer(
text:
'Currently only the following 3rd party Spice client works:'),
Center(
child: OutlinedButton(
- onPressed: () => {launchUrl(Links.opaqueApp)},
+ onPressed: () {
+ final link = Platform.isIOS ? Links.aSpiceClient : Links.opaqueApp;
+ launchUrl(link);
+ },
style: OutlinedButton.styleFrom(
side: const BorderSide(color: ProxmoxColors.supportGrey),
foregroundColor: Colors.white,
),
- child: const Text('Opaque'),
+ child: Text(Platform.isIOS ? "aSPICE Pro" : "Opaque"),
),
),
],
--
2.50.1
_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2025-11-19 14:45 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-11-19 14:45 [pve-devel] [PATCH pve_flutter_frontend] fix: ios: update welcome screen text and add aSPICE client app store link Shan Shaji
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox