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.
aku_new_community/lib/pages/community_introduce/community_introduce_page.dart

46 lines
2.2 KiB

import 'package:aku_community/base/base_style.dart';
import 'package:aku_community/widget/bee_scaffold.dart';
import 'package:flutter/material.dart';
import 'package:aku_community/const/resource.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:velocity_x/velocity_x.dart';
class CommunityIntroducePage extends StatefulWidget {
CommunityIntroducePage({Key? key}) : super(key: key);
@override
_CommunityIntroducePageState createState() => _CommunityIntroducePageState();
}
class _CommunityIntroducePageState extends State<CommunityIntroducePage> {
@override
Widget build(BuildContext context) {
return BeeScaffold(
bodyColor: Colors.white,
title: '社区介绍',
body: ListView(
children: [
SizedBox(
child: Image.asset(
R.ASSETS_IMAGES_PLACEHOLDER_WEBP,
fit: BoxFit.cover,
),
width: double.infinity,
height: 424.w,
),
24.w.heightBox,
''' 小区内部环境典雅幽静绿化多通过小区道路的合理组织休闲设施的精心安排提供自然、舒适的居住环境。周边配套齐全设施完备物业管理完善保安24小时值班住户素质高。社区主流健康向上社区风气良好邻里关系和谐。
便
广
线西使
'''
.text
.size(28.sp)
.color(ktextPrimary)
.make(),
],
),
);
}
}