-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathabout_screen.dart
More file actions
1051 lines (979 loc) · 31.9 KB
/
Copy pathabout_screen.dart
File metadata and controls
1051 lines (979 loc) · 31.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:go_router/go_router.dart';
import 'package:heroicons/heroicons.dart';
import 'package:intl/intl.dart';
import 'package:lucide_icons_flutter/lucide_icons.dart';
import 'package:mostro_mobile/core/app_theme.dart';
import 'package:mostro_mobile/features/mostro/mostro_instance.dart';
import 'package:mostro_mobile/shared/providers/order_repository_provider.dart';
import 'package:mostro_mobile/generated/l10n.dart';
import 'package:mostro_mobile/shared/utils/snack_bar_helper.dart';
import 'package:url_launcher/url_launcher.dart';
class AboutScreen extends ConsumerWidget {
static final textTheme = AppTheme.theme.textTheme;
const AboutScreen({super.key});
@override
Widget build(BuildContext context, WidgetRef ref) {
final nostrEvent = ref.watch(orderRepositoryProvider).mostroInstance;
return Scaffold(
appBar: AppBar(
backgroundColor: Colors.transparent,
elevation: 0,
leading: IconButton(
icon:
const HeroIcon(HeroIcons.arrowLeft, color: AppTheme.textPrimary),
onPressed: () => context.pop(),
),
title: Text(
S.of(context)!.about,
style: const TextStyle(
color: AppTheme.textPrimary,
fontSize: 20,
fontWeight: FontWeight.w600,
),
),
),
backgroundColor: AppTheme.backgroundDark,
body: Column(
children: [
Expanded(
child: SingleChildScrollView(
padding: EdgeInsets.only(
left: 16,
right: 16,
top: 16,
bottom: 16 + MediaQuery.of(context).viewPadding.bottom,
),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
// App Information Card
_buildAppInformationCard(context),
const SizedBox(height: 16),
// Documentation Card
_buildDocumentationCard(context),
const SizedBox(height: 16),
// Mostro Node Card
nostrEvent == null
? _buildLoadingCard(context)
: _buildMostroNodeCard(
context, MostroInstance.fromEvent(nostrEvent)),
const SizedBox(height: 16),
],
),
),
)
],
),
);
}
String _formatFiatCurrencies(BuildContext context, String currencies) {
if (currencies.isEmpty || currencies == 'Tag: fiat_currencies_accepted not found') {
return S.of(context)!.all;
}
// Add space after commas: "USD,EUR,ARS" -> "USD, EUR, ARS"
return currencies.replaceAll(',', ', ');
}
Widget _buildAppInformationCard(BuildContext context) {
const String appVersion = String.fromEnvironment('APP_VERSION',
defaultValue: 'N/A'); // DON'T TOUCH
const String gitCommit = String.fromEnvironment('GIT_COMMIT',
defaultValue: 'N/A'); // DON'T TOUCH
return Container(
decoration: BoxDecoration(
color: AppTheme.backgroundCard,
borderRadius: BorderRadius.circular(12),
border: Border.all(color: Colors.white.withValues(alpha: 0.1)),
),
child: Padding(
padding: const EdgeInsets.all(20),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
children: [
const Icon(
LucideIcons.smartphone,
color: AppTheme.activeColor,
size: 20,
),
const SizedBox(width: 8),
Text(
S.of(context)!.appInformation,
style: const TextStyle(
color: AppTheme.textPrimary,
fontSize: 18,
fontWeight: FontWeight.w600,
),
),
],
),
const SizedBox(height: 20),
// Version
_buildInfoRow(
S.of(context)!.version,
appVersion,
),
const SizedBox(height: 12),
// GitHub Repository
_buildClickableInfoRow(
context,
S.of(context)!.githubRepository,
'mostro-mobile',
'https://github.com/MostroP2P/mobile',
Icons.open_in_new,
),
const SizedBox(height: 12),
// Commit Hash
_buildInfoRow(
S.of(context)!.commitHash,
gitCommit,
),
const SizedBox(height: 12),
// License
_buildLicenseInfoRow(context),
],
),
),
);
}
Widget _buildDocumentationCard(BuildContext context) {
return Container(
decoration: BoxDecoration(
color: AppTheme.backgroundCard,
borderRadius: BorderRadius.circular(12),
border: Border.all(color: Colors.white.withValues(alpha: 0.1)),
),
child: Padding(
padding: const EdgeInsets.all(20),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
children: [
const Icon(
LucideIcons.book,
color: AppTheme.activeColor,
size: 20,
),
const SizedBox(width: 8),
Text(
S.of(context)!.documentation,
style: const TextStyle(
color: AppTheme.textPrimary,
fontSize: 18,
fontWeight: FontWeight.w600,
),
),
],
),
const SizedBox(height: 20),
// Users Documentation (English)
_buildClickableInfoRow(
context,
S.of(context)!.usersDocumentationEnglish,
S.of(context)!.read,
'https://mostro.network/docs-english/',
Icons.open_in_new,
),
const SizedBox(height: 12),
// Users Documentation (Spanish)
_buildClickableInfoRow(
context,
S.of(context)!.usersDocumentationSpanish,
S.of(context)!.read,
'https://mostro.network/docs-spanish/',
Icons.open_in_new,
),
const SizedBox(height: 12),
// Technical Documentation
_buildClickableInfoRow(
context,
S.of(context)!.technicalDocumentation,
S.of(context)!.read,
'https://mostro.network/protocol/',
Icons.open_in_new,
),
],
),
),
);
}
Widget _buildMostroNodeCard(BuildContext context, MostroInstance instance) {
final formatter = NumberFormat.decimalPattern();
return Container(
decoration: BoxDecoration(
color: AppTheme.backgroundCard,
borderRadius: BorderRadius.circular(12),
border: Border.all(color: Colors.white.withValues(alpha: 0.1)),
),
child: Padding(
padding: const EdgeInsets.all(20),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
children: [
const Icon(
LucideIcons.server,
color: AppTheme.activeColor,
size: 20,
),
const SizedBox(width: 8),
Text(
S.of(context)!.mostroNode,
style: const TextStyle(
color: AppTheme.textPrimary,
fontSize: 18,
fontWeight: FontWeight.w600,
),
),
],
),
const SizedBox(height: 20),
// General Info Section
Text(
S.of(context)!.generalInfo,
style: const TextStyle(
color: AppTheme.activeColor,
fontSize: 16,
fontWeight: FontWeight.w600,
),
),
const SizedBox(height: 12),
_buildInfoRowWithDialogAndCopy(
context,
S.of(context)!.mostroPublicKey,
instance.pubKey,
S.of(context)!.mostroPublicKeyExplanation,
),
const SizedBox(height: 16),
_buildInfoRowWithDialog(
context,
S.of(context)!.maxOrderAmount,
'${formatter.format(instance.maxOrderAmount)} ${S.of(context)!.satoshis}',
S.of(context)!.maxOrderAmountExplanation,
),
const SizedBox(height: 16),
_buildInfoRowWithDialog(
context,
S.of(context)!.minOrderAmount,
'${formatter.format(instance.minOrderAmount)} ${S.of(context)!.satoshis}',
S.of(context)!.minOrderAmountExplanation,
),
const SizedBox(height: 16),
_buildInfoRowWithDialog(
context,
S.of(context)!.orderLifespan,
'${instance.expirationHours} ${instance.expirationHours == 1 ? S.of(context)!.hour : S.of(context)!.hours}',
S.of(context)!.orderExpirationExplanation,
),
const SizedBox(height: 16),
_buildInfoRowWithDialog(
context,
S.of(context)!.serviceFee,
'${instance.fee * 100}%',
S.of(context)!.serviceFeeExplanation,
),
const SizedBox(height: 16),
_buildInfoRowWithDialog(
context,
S.of(context)!.fiatCurrenciesAccepted,
_formatFiatCurrencies(context, instance.fiatCurrenciesAccepted),
S.of(context)!.fiatCurrenciesAcceptedExplanation,
),
const SizedBox(height: 20),
// Anti-abuse bond Section (hidden when the node doesn't advertise it)
_buildAntiAbuseBondSection(context, instance),
// Technical Details Section
Text(
S.of(context)!.technicalDetails,
style: const TextStyle(
color: AppTheme.activeColor,
fontSize: 16,
fontWeight: FontWeight.w600,
),
),
const SizedBox(height: 12),
_buildInfoRowWithDialog(
context,
S.of(context)!.mostroDaemonVersion,
instance.mostroVersion,
S.of(context)!.mostroVersionExplanation,
),
const SizedBox(height: 16),
_buildInfoRowWithDialog(
context,
S.of(context)!.protocolVersion,
instance.protocolVersion.toString(),
S.of(context)!.protocolVersionExplanation,
),
const SizedBox(height: 16),
_buildInfoRowWithDialog(
context,
S.of(context)!.mostroCommitId,
instance.commitHash,
S.of(context)!.mostroCommitIdExplanation,
),
const SizedBox(height: 16),
_buildInfoRowWithDialog(
context,
S.of(context)!.orderExpiration,
'${instance.expirationSeconds} ${S.of(context)!.sec}',
S.of(context)!.orderExpirationExplanation,
),
const SizedBox(height: 16),
_buildInfoRowWithDialog(
context,
S.of(context)!.holdInvoiceExpiration,
'${instance.holdInvoiceExpirationWindow} ${S.of(context)!.sec}',
S.of(context)!.holdInvoiceExpirationExplanation,
),
const SizedBox(height: 16),
_buildInfoRowWithDialog(
context,
S.of(context)!.holdInvoiceCltvDelta,
'${instance.holdInvoiceCltvDelta} ${S.of(context)!.blocks}',
S.of(context)!.holdInvoiceCltvDeltaExplanation,
),
const SizedBox(height: 16),
_buildInfoRowWithDialog(
context,
S.of(context)!.invoiceExpirationWindow,
'${instance.invoiceExpirationWindow} ${S.of(context)!.seconds}',
S.of(context)!.invoiceExpirationWindowExplanation,
),
const SizedBox(height: 16),
_buildInfoRowWithDialog(
context,
S.of(context)!.proofOfWork,
instance.pow.toString(),
S.of(context)!.proofOfWorkExplanation,
),
const SizedBox(height: 16),
_buildInfoRowWithDialog(
context,
S.of(context)!.maxOrdersPerResponse,
instance.maxOrdersPerResponse.toString(),
S.of(context)!.maxOrdersPerResponseExplanation,
),
const SizedBox(height: 20),
// Lightning Network Section
Text(
S.of(context)!.lightningNetwork,
style: const TextStyle(
color: AppTheme.activeColor,
fontSize: 16,
fontWeight: FontWeight.w600,
),
),
const SizedBox(height: 12),
_buildInfoRowWithDialog(
context,
S.of(context)!.lndDaemonVersion,
instance.lndVersion,
S.of(context)!.lndDaemonVersionExplanation,
),
const SizedBox(height: 16),
_buildInfoRowWithDialogAndCopy(
context,
S.of(context)!.lndNodePublicKey,
instance.lndNodePublicKey,
S.of(context)!.lndNodePublicKeyExplanation,
),
const SizedBox(height: 16),
_buildInfoRowWithDialog(
context,
S.of(context)!.lndCommitId,
instance.lndCommitHash,
S.of(context)!.lndCommitIdExplanation,
),
const SizedBox(height: 16),
_buildInfoRowWithDialog(
context,
S.of(context)!.lndNodeAlias,
instance.lndNodeAlias,
S.of(context)!.lndNodeAliasExplanation,
),
const SizedBox(height: 16),
_buildInfoRowWithDialog(
context,
S.of(context)!.supportedChains,
instance.supportedChains,
S.of(context)!.supportedChainsExplanation,
),
const SizedBox(height: 16),
_buildInfoRowWithDialog(
context,
S.of(context)!.supportedNetworks,
instance.supportedNetworks,
S.of(context)!.supportedNetworksExplanation,
),
const SizedBox(height: 16),
_buildInfoRowWithDialogAndCopy(
context,
S.of(context)!.lndNodeUri,
instance.lndNodeUri,
S.of(context)!.lndNodeUriExplanation,
),
],
),
),
);
}
Widget _buildLoadingCard(BuildContext context) {
return Container(
decoration: BoxDecoration(
color: AppTheme.backgroundCard,
borderRadius: BorderRadius.circular(12),
border: Border.all(color: Colors.white.withValues(alpha: 0.1)),
),
child: Padding(
padding: const EdgeInsets.all(20),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
children: [
const Icon(
LucideIcons.info,
color: AppTheme.activeColor,
size: 20,
),
const SizedBox(width: 8),
Text(
S.of(context)!.mostroNode,
style: const TextStyle(
color: AppTheme.textPrimary,
fontSize: 18,
fontWeight: FontWeight.w600,
),
),
],
),
const SizedBox(height: 20),
const Center(
child: CircularProgressIndicator(
color: AppTheme.activeColor,
),
),
],
),
),
);
}
/// Anti-abuse bond section. Hidden entirely for legacy daemons that don't
/// advertise the policy ([BondPolicy.unsupported]); shows only a status row
/// when disabled, and the full parameter set when enabled.
Widget _buildAntiAbuseBondSection(
BuildContext context, MostroInstance instance) {
if (instance.bondPolicy == BondPolicy.unsupported) {
return const SizedBox.shrink();
}
final s = S.of(context)!;
final enabled = instance.bondPolicy == BondPolicy.enabled;
final children = <Widget>[
_buildSectionHeaderWithInfo(
context,
s.antiAbuseBond,
s.antiAbuseBondExplanation,
),
const SizedBox(height: 12),
_buildInfoRowWithDialog(
context,
s.bondStatusLabel,
enabled ? s.bondEnabled : s.bondDisabled,
s.bondStatusExplanation,
),
];
if (enabled) {
children.addAll([
const SizedBox(height: 16),
_buildInfoRowWithDialog(
context,
s.bondAppliesToLabel,
_bondAppliesToValue(s, instance.bondApplyTo),
s.bondAppliesToExplanation,
),
const SizedBox(height: 16),
_buildInfoRowWithDialog(
context,
s.bondAmountLabel,
_bondAmountValue(s, instance),
s.bondAmountExplanation,
),
const SizedBox(height: 16),
_buildInfoRowWithDialog(
context,
s.bondSlashOnTimeoutLabel,
instance.bondSlashOnWaitingTimeout == null
? s.notAvailableShort
: (instance.bondSlashOnWaitingTimeout! ? s.yes : s.no),
s.bondSlashOnTimeoutExplanation,
),
const SizedBox(height: 16),
_buildInfoRowWithDialog(
context,
s.bondNodeShareLabel,
_formatBondPercent(s, instance.bondSlashNodeSharePct),
s.bondNodeShareExplanation,
),
const SizedBox(height: 16),
_buildInfoRowWithDialog(
context,
s.bondClaimWindowLabel,
instance.bondPayoutClaimWindowDays == null
? s.notAvailableShort
: s.bondClaimWindowValue(instance.bondPayoutClaimWindowDays!),
s.bondClaimWindowExplanation,
),
]);
}
children.add(const SizedBox(height: 20));
return Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: children,
);
}
/// Section header matching the plain headers but with a tappable info icon
/// that opens the concept explanation dialog.
Widget _buildSectionHeaderWithInfo(
BuildContext context, String title, String explanation) {
return Row(
children: [
Text(
title,
style: const TextStyle(
color: AppTheme.activeColor,
fontSize: 16,
fontWeight: FontWeight.w600,
),
),
const SizedBox(width: 6),
InkWell(
onTap: () => _showInfoDialog(context, title, explanation),
borderRadius: BorderRadius.circular(12),
child: const Padding(
padding: EdgeInsets.all(8.0),
child: Icon(
Icons.info_outline,
size: 16,
color: AppTheme.activeColor,
),
),
),
],
);
}
String _bondAppliesToValue(S s, BondApplyTo? applyTo) {
switch (applyTo) {
case BondApplyTo.take:
return s.bondAppliesToTakers;
case BondApplyTo.make:
return s.bondAppliesToMakers;
case BondApplyTo.both:
return s.bondAppliesToBoth;
case null:
return s.notAvailableShort;
}
}
String _bondAmountValue(S s, MostroInstance instance) {
final base = instance.bondBaseAmountSats;
if (instance.bondAmountPct == null || base == null) {
return s.notAvailableShort;
}
final percent = _formatPercentNumber(s, instance.bondAmountPct);
final min = NumberFormat.decimalPattern().format(base);
return s.bondAmountValue(percent, min);
}
/// Formats a `[0,1]` fraction as a percent number without trailing zeros,
/// e.g. 0.5 -> "50", 0.015 -> "1.5". Returns the localized "N/A" for null.
String _formatPercentNumber(S s, double? fraction) {
if (fraction == null) return s.notAvailableShort;
return NumberFormat('0.##').format(fraction * 100);
}
String _formatBondPercent(S s, double? fraction) {
if (fraction == null) return s.notAvailableShort;
return '${_formatPercentNumber(s, fraction)}%';
}
Widget _buildInfoRow(String label, String value) {
return Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Expanded(
flex: 2,
child: Text(
label,
style: const TextStyle(
color: AppTheme.textSecondary,
fontSize: 14,
),
),
),
const SizedBox(width: 16),
Expanded(
flex: 3,
child: Text(
value,
style: const TextStyle(
color: AppTheme.textPrimary,
fontSize: 14,
fontWeight: FontWeight.w500,
),
),
),
],
);
}
Widget _buildInfoRowWithDialog(
BuildContext context, String label, String value, String explanation) {
return Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
// Label with info icon
Row(
children: [
Text(
label,
style: const TextStyle(
color: AppTheme.textSecondary,
fontSize: 14,
),
),
const SizedBox(width: 6),
InkWell(
onTap: () => _showInfoDialog(context, label, explanation),
borderRadius: BorderRadius.circular(12),
child: const Padding(
padding: EdgeInsets.all(8.0),
child: Icon(
Icons.info_outline,
size: 16,
color: AppTheme.textSecondary,
),
),
),
],
),
const SizedBox(height: 4),
// Value below the label
Text(
value,
style: const TextStyle(
color: AppTheme.textPrimary,
fontSize: 14,
fontWeight: FontWeight.w500,
),
),
],
);
}
Widget _buildInfoRowWithDialogAndCopy(
BuildContext context, String label, String value, String explanation) {
return Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
// Label with info and copy icons
Row(
children: [
Text(
label,
style: const TextStyle(
color: AppTheme.textSecondary,
fontSize: 14,
),
),
const SizedBox(width: 6),
InkWell(
onTap: () => _showInfoDialog(context, label, explanation),
borderRadius: BorderRadius.circular(12),
child: const Padding(
padding: EdgeInsets.all(8.0),
child: Icon(
Icons.info_outline,
size: 16,
color: AppTheme.textSecondary,
),
),
),
const SizedBox(width: 6),
InkWell(
onTap: () => _copyToClipboard(context, value),
borderRadius: BorderRadius.circular(12),
child: const Icon(
Icons.copy,
size: 16,
color: AppTheme.textSecondary,
),
),
],
),
const SizedBox(height: 4),
// Value below the label
Text(
value,
style: const TextStyle(
color: AppTheme.textPrimary,
fontSize: 14,
fontWeight: FontWeight.w500,
),
),
],
);
}
void _showInfoDialog(BuildContext context, String title, String content) {
showDialog(
context: context,
builder: (BuildContext dialogContext) {
return AlertDialog(
backgroundColor: AppTheme.backgroundCard,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(16),
side: BorderSide(color: Colors.white.withValues(alpha: 0.1)),
),
title: Text(
title,
style: const TextStyle(
color: AppTheme.textPrimary,
fontSize: 18,
fontWeight: FontWeight.w600,
),
),
content: Text(
content,
style: const TextStyle(
color: AppTheme.textSecondary,
fontSize: 14,
height: 1.5,
),
),
actions: [
TextButton(
onPressed: () => Navigator.of(dialogContext).pop(),
child: Text(
S.of(context)!.ok,
style: const TextStyle(
color: AppTheme.activeColor,
fontSize: 16,
fontWeight: FontWeight.w500,
),
),
),
],
);
},
);
}
Widget _buildClickableInfoRow(BuildContext context, String label,
String value, String url, IconData icon) {
return Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
// The label takes up as much space as possible.
Expanded(
child: Text(
label,
style: const TextStyle(
color: AppTheme.textSecondary,
fontSize: 14,
),
),
),
const SizedBox(width: 8),
// The value + icon take up only the minimum space
ConstrainedBox(
constraints: const BoxConstraints(minWidth: 0),
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
InkWell(
onTap: () => _launchUrl(url, context),
borderRadius: BorderRadius.circular(4),
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
Text(
value,
style: const TextStyle(
color: AppTheme.activeColor,
fontSize: 14,
fontWeight: FontWeight.w500,
),
),
const SizedBox(width: 4),
Icon(
icon,
color: AppTheme.activeColor,
size: 16,
),
],
),
),
],
),
),
],
);
}
Future<void> _launchUrl(String url, BuildContext context) async {
try {
final Uri uri = Uri.parse(url);
final launchModes = [
LaunchMode.platformDefault,
LaunchMode.externalApplication,
LaunchMode.inAppWebView,
];
for (final mode in launchModes) {
try {
await launchUrl(uri, mode: mode);
return; // Success, exit early
} catch (e) {
// Continue to next mode
}
}
// All launch modes failed
if (context.mounted) {
_showErrorSnackBar(context, S.of(context)!.cannotOpenLink);
}
} catch (e) {
if (context.mounted) {
_showErrorSnackBar(context, S.of(context)!.failedToOpenLink);
}
}
}
void _showErrorSnackBar(BuildContext context, String message) {
SnackBarHelper.showTopSnackBar(
context,
message,
duration: const Duration(seconds: 3),
backgroundColor: AppTheme.statusError,
);
}
Widget _buildLicenseInfoRow(BuildContext context) {
return Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
// The label takes up as much space as possible
Expanded(
child: Text(
S.of(context)!.license,
style: const TextStyle(
color: AppTheme.textSecondary,
fontSize: 14,
),
),
),
const SizedBox(width: 8),
// The value + icon take up only the minimum space
ConstrainedBox(
constraints: const BoxConstraints(minWidth: 0),
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
InkWell(
onTap: () => _showLicenseDialog(context),
borderRadius: BorderRadius.circular(4),
child: const Row(
mainAxisSize: MainAxisSize.min,
children: [
Text(
'MIT',
style: TextStyle(
color: AppTheme.activeColor,
fontSize: 14,
fontWeight: FontWeight.w500,
),
),
],
),
),
],
),
),
],
);
}
void _showLicenseDialog(BuildContext context) {
showDialog(
context: context,
builder: (context) => Dialog(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(12),
),
backgroundColor: AppTheme.backgroundCard,
child: Padding(
padding: const EdgeInsets.all(20.0),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
// Title
Text(
S.of(context)!.license,
style: const TextStyle(
color: Colors.white,
fontSize: 18,
fontWeight: FontWeight.w600,
),
),
const SizedBox(height: 16),
// License text in scrollable container
Container(
height: 400,
width: double.infinity,
decoration: BoxDecoration(
color: Colors.black.withValues(alpha: 0.3),
borderRadius: BorderRadius.circular(8),
),
child: SingleChildScrollView(
padding: const EdgeInsets.all(12),