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.
69 lines
2.5 KiB
69 lines
2.5 KiB
import 'package:aku_new_community/base/base_style.dart';
|
|
import 'package:aku_new_community/const/resource.dart';
|
|
import 'package:aku_new_community/constants/api.dart';
|
|
import 'package:aku_new_community/constants/saas_api.dart';
|
|
import 'package:aku_new_community/model/common/img_model.dart';
|
|
import 'package:aku_new_community/models/community_introduce/community_introduce_model.dart';
|
|
import 'package:aku_new_community/utils/network/base_model.dart';
|
|
import 'package:aku_new_community/utils/network/net_util.dart';
|
|
import 'package:aku_new_community/widget/bee_scaffold.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_easyrefresh/easy_refresh.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> {
|
|
CommunityIontroduceModel _model = CommunityIontroduceModel.init();
|
|
bool _onload = true;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return BeeScaffold(
|
|
bodyColor: Colors.white,
|
|
title: '社区介绍',
|
|
body: EasyRefresh(
|
|
firstRefresh: true,
|
|
header: MaterialHeader(),
|
|
onRefresh: () async {
|
|
BaseModel baseModel =
|
|
await NetUtil().get(API.manager.communityIntroduceInfo);
|
|
if (baseModel.success && baseModel.data != null) {
|
|
_model = CommunityIontroduceModel.fromJson(baseModel.data);
|
|
}
|
|
_onload = false;
|
|
setState(() {});
|
|
},
|
|
child: _onload
|
|
? Container()
|
|
: ListView(
|
|
children: [
|
|
SizedBox(
|
|
child: FadeInImage.assetNetwork(
|
|
placeholder: R.ASSETS_IMAGES_PLACEHOLDER_WEBP,
|
|
fit: BoxFit.cover,
|
|
image: SAASAPI.image(ImgModel.first(_model.imgList))),
|
|
width: double.infinity,
|
|
height: 424.w,
|
|
),
|
|
24.w.heightBox,
|
|
Padding(
|
|
padding: EdgeInsets.symmetric(horizontal: 24.w),
|
|
child: _model.content.text
|
|
.size(28.sp)
|
|
.color(ktextPrimary)
|
|
.make(),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|