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.

38 lines
1.4 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

import 'package:aku_community_manager/ui/widgets/common/aku_scaffold.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
class AboutPage extends StatelessWidget {
const AboutPage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
const aboutText =
'''“小蜜蜂社区管家端”APP是为全国社区业主量身定做本产品融合了基础物业服务园区生活服务周边商圈服务和邻里社交服务的一站式园区生活服务平台。该平台可提供超过30种的线上服务其中包括维修、意见建议、投诉表扬物业缴费、访客通行、粮油宅配、团购商城等并可通过支付宝、微信支付来未完成线上支付真正打造了智慧园区O2O平台为广大业主打造更安全、更便捷、更和睦的幸福园区。''';
TextStyle _style = TextStyle(
fontSize: 32.sp,
color: Color(0xff575757),
);
return AkuScaffold(
title: '关于小蜜蜂智慧社区管家端',
body: ListView(
padding: EdgeInsets.all(32.w),
children: [
Text(
aboutText,
style: _style,
),
SizedBox(height: 100.w),
Text(
'”小蜜蜂智慧社区”APP——幸福生活简单到达',
style: _style,
),
],
),
);
}
}