-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathabout_page.dart
99 lines (96 loc) · 3.42 KB
/
about_page.dart
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
import 'package:flutter/material.dart';
import 'package:flutter_hooks/flutter_hooks.dart';
import '../../constants/resources.dart';
import '../../utils/auto_update_checker.dart';
import '../../utils/extension/extension.dart';
import '../../utils/hook.dart';
import '../../utils/system/package_info.dart';
import '../../utils/uri_utils.dart';
import '../../widgets/app_bar.dart';
import '../../widgets/cell.dart';
class AboutPage extends HookWidget {
const AboutPage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
final info = useMemoizedFuture(getPackageInfo, null).data;
return Scaffold(
backgroundColor: context.theme.background,
appBar: MixinAppBar(
title: Text(context.l10n.about),
),
body: SingleChildScrollView(
child: Container(
alignment: Alignment.topCenter,
padding: const EdgeInsets.only(top: 40),
child: Column(
children: [
Image.asset(
Resources.assetsImagesAboutLogoPng,
width: 60,
height: 60,
),
const SizedBox(height: 24),
Text(
context.l10n.mixinMessenger,
style: TextStyle(
color: context.theme.text,
fontSize: 18,
),
),
// SignalDatabase.get
const SizedBox(height: 8),
SelectableText(
info?.versionAndBuildNumber ?? '',
style: TextStyle(
color: context.theme.secondaryText,
fontSize: 16,
),
),
const SizedBox(height: 50),
CellGroup(
cellBackgroundColor: context.dynamicColor(
Colors.white,
darkColor: const Color.fromRGBO(255, 255, 255, 0.06),
),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
CellItem(
title: Text(context.l10n.followTwitter),
onTap: () => openUri(
context, 'https://twitter.com/MixinMessenger'),
),
CellItem(
title: Text(context.l10n.followFacebook),
onTap: () =>
openUri(context, 'https://fb.com/MixinMessenger'),
),
CellItem(
title: Text(context.l10n.helpCenter),
onTap: () => openUri(
context, 'https://mixinmessenger.zendesk.com'),
),
CellItem(
title: Text(context.l10n.termsService),
onTap: () =>
openUri(context, 'https://mixin.one/pages/terms'),
),
CellItem(
title: Text(context.l10n.privacyPolicy),
onTap: () =>
openUri(context, 'https://mixin.one/pages/privacy'),
),
CellItem(
title: Text(context.l10n.checkUpdate),
onTap: () => checkUpdate(context: context, force: true),
),
],
),
),
],
),
),
),
);
}
}