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.
project_telephony/lib/ui/user/content_authority_page.dart

79 lines
6.9 KiB

import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
import '../../base/base_style.dart';
import '../widget/plone_back_button.dart';
class ContentAuthorityPage extends StatelessWidget {
const ContentAuthorityPage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
elevation: 0,
title: Text(
'隐私权限',
style: TextStyle(
fontSize: BaseStyle.fontSize34,
color: BaseStyle.color333333,
fontWeight: FontWeight.bold),
),
titleSpacing: 162.w,
leading: const CloudBackButton(isSpecial: true),
backgroundColor: kForeGroundColor),
backgroundColor: Colors.white,
body: SingleChildScrollView(
padding: EdgeInsets.all(16.sp),
child: RichText(
text: const TextSpan(
style: TextStyle(
fontSize: 16, //设置大小
color: Colors.black, //设置颜色
),
children: <TextSpan>[
TextSpan(
text: '短信帮手隐私政策\n',
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 20,
)),
TextSpan(
text: '''
使 使使
1. (a) 使访 IP使访 (a) (b)
2. 使 (a) 访访 (b)
3. (a) (b) (c) (d) (e) 便 (f) (g)
4. 访
5. Cookie使 (a) cookiescookies 便使cookies (b) cookiescookiescookies使cookies (c) cookies
6. (a) (b) 使
7. (a)便使访 (b) 便
app/app/app
app
''',
),
TextSpan(text: '''
1.
2.
3.
/\n
''', style: TextStyle(fontWeight: FontWeight.bold)),
TextSpan(
text: '短信帮手\n宁波沃尔斯软件有限公司',
style: TextStyle(fontWeight: FontWeight.bold, fontSize: 18)),
],
),
),
),
);
}
}