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.

148 lines
14 KiB

4 years ago
// Flutter imports:
// Project imports:
3 years ago
import 'package:aku_new_community_manager/ui/widgets/common/aku_scaffold.dart';
4 years ago
import 'package:flutter/material.dart';
4 years ago
// Package imports:
import 'package:flutter_screenutil/flutter_screenutil.dart';
4 years ago
class PrivacyPage extends StatelessWidget {
const PrivacyPage({Key? key}) : super(key: key);
4 years ago
@override
Widget build(BuildContext context) {
return AkuScaffold(
title: '隐私协议',
body: SingleChildScrollView(
padding: EdgeInsets.all(16.sp),
child: Column(
4 years ago
children: [
Text(
'''
便使使
1. 2.使 3. 4. 5. 6. 7. 8.
1.
1.1
APP使APP便访
1.2
APPAPP使APP使 APP使使APPAPP使APP 使使
使
/使使
使使
使使使
访使访访访访访访访访访访
使使使
使使使
/使
使
使使使
使
/使
使
使
使
ETC使ETC
使使
使使
使
使,
访使
访使使访
使访
使访
使访
使访
使访
使访
访
访
访访访
访
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.
kaidalai@163.com ''',
style: Theme.of(context).textTheme.subtitle1,
),
],
),
),
4 years ago
);
}
}