mirror of
https://github.com/StarCitizenToolBox/app.git
synced 2026-01-13 19:50:28 +00:00
fix: view handle URL
This commit is contained in:
parent
6c3d9d05be
commit
a0290cf28a
@ -165,10 +165,7 @@ class PartyRoomRegisterPage extends HookConsumerWidget {
|
|||||||
style: const TextStyle(fontSize: 18, fontWeight: FontWeight.bold, color: Color(0xFFE0E0E0)),
|
style: const TextStyle(fontSize: 18, fontWeight: FontWeight.bold, color: Color(0xFFE0E0E0)),
|
||||||
),
|
),
|
||||||
const SizedBox(height: 12),
|
const SizedBox(height: 12),
|
||||||
Text(
|
Text(S.current.party_room_step1_desc, style: TextStyle(fontSize: 13, color: Colors.white.withValues(alpha: 0.6))),
|
||||||
S.current.party_room_step1_desc,
|
|
||||||
style: TextStyle(fontSize: 13, color: Colors.white.withValues(alpha: 0.6)),
|
|
||||||
),
|
|
||||||
const SizedBox(height: 16),
|
const SizedBox(height: 16),
|
||||||
|
|
||||||
TextBox(
|
TextBox(
|
||||||
@ -187,7 +184,7 @@ class PartyRoomRegisterPage extends HookConsumerWidget {
|
|||||||
children: [
|
children: [
|
||||||
Button(
|
Button(
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
launchUrlString('https://robertsspaceindustries.com/en/account/dashboard');
|
launchUrlString('https://robertsspaceindustries.com/en/account/settings');
|
||||||
},
|
},
|
||||||
child: Text(S.current.party_room_view_game_id),
|
child: Text(S.current.party_room_view_game_id),
|
||||||
),
|
),
|
||||||
@ -361,10 +358,13 @@ class PartyRoomRegisterPage extends HookConsumerWidget {
|
|||||||
style: const TextStyle(fontSize: 24, fontWeight: FontWeight.bold, color: Color(0xFFE0E0E0)),
|
style: const TextStyle(fontSize: 24, fontWeight: FontWeight.bold, color: Color(0xFFE0E0E0)),
|
||||||
),
|
),
|
||||||
const SizedBox(height: 8),
|
const SizedBox(height: 8),
|
||||||
Text(S.current.party_room_register_success_msg, style: TextStyle(fontSize: 13, color: Colors.white.withValues(alpha: 0.6))),
|
Text(
|
||||||
|
S.current.party_room_register_success_msg,
|
||||||
|
style: TextStyle(fontSize: 13, color: Colors.white.withValues(alpha: 0.6)),
|
||||||
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user