You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

131 lines
15 KiB

4 years ago
// Flutter imports:
4 years ago
import 'package:flutter/material.dart';
4 years ago
// Package imports:
import 'package:flutter_screenutil/flutter_screenutil.dart';
4 years ago
4 years ago
// Project imports:
import 'package:aku_community_manager/ui/widgets/common/aku_scaffold.dart';
4 years ago
class PrivacyPage extends StatelessWidget {
const PrivacyPage({Key key}) : super(key: key);
@override
Widget build(BuildContext context) {
return AkuScaffold(
title: '隐私协议',
body: SingleChildScrollView(
padding: EdgeInsets.all(16.sp),
child: Column(
4 years ago
children: [
Text(
'''
APPAPP便使使
1.
2.使
3.
4.
5.
6.
7.
8.
1.
1.1
APP使APP便访
1.2
APPAPP使APP使
APP使使APPAPP使APP
使使
使
/ 使使
使使
使使使
访 使访访访访访访访访访访
使使使
使
使使使
/ 使
使
使
/ 使
使
使
使
使使
使
使使
/ 使使使
使,
使,
使,
访使
访使
使访
使访
使访
使访
使访
使访
使访
使访
使访
使访
使访
访
访
访
访
访
(iOS) 访
/ 使访
1.3
APPAPP
使访
1.4
1.5
便使APPID访
2.使
2.1 
2.2 APP使使使APPAPP使
3.
3.1 
3.2 
4.
便
app
5.
访使APP
APP
使
线APP
6.
6.1 APP访
6.2 
7.
APP18使APPAPP使8
8.
johnson.yang@akuhome.com
20201020
''',
style: Theme.of(context).textTheme.subtitle1,
),
],
),
),
4 years ago
);
}
}