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.
137 lines
4.6 KiB
137 lines
4.6 KiB
import 'package:aku_community_manager/const/resource.dart';
|
|
import 'package:aku_community_manager/provider/user_provider.dart';
|
|
import 'package:aku_community_manager/style/app_style.dart';
|
|
import 'package:aku_community_manager/ui/login/login_page.dart';
|
|
import 'package:aku_community_manager/ui/settings/settings_page.dart';
|
|
import 'package:aku_community_manager/ui/settings/user_info_page.dart';
|
|
import 'package:aku_ui/common_widgets/aku_button.dart';
|
|
import 'package:aku_ui/common_widgets/aku_round_button.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:provider/provider.dart';
|
|
|
|
class PersonalDraw extends StatefulWidget {
|
|
PersonalDraw({Key key}) : super(key: key);
|
|
|
|
@override
|
|
_PersonalDrawState createState() => _PersonalDrawState();
|
|
}
|
|
|
|
class _PersonalDrawState extends State<PersonalDraw> {
|
|
Widget _myListTile(String path, String text, {VoidCallback onPressed}) {
|
|
return AkuButton(
|
|
onPressed: onPressed,
|
|
child: Container(
|
|
height: 96.w,
|
|
padding: EdgeInsets.only(left: 32.w),
|
|
child: Row(
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
children: [
|
|
Image.asset(
|
|
path,
|
|
width: 40.w,
|
|
height: 40.w,
|
|
),
|
|
SizedBox(width: 16.w),
|
|
Text(
|
|
text,
|
|
style: TextStyle(
|
|
color: AppStyle.primaryTextColor,
|
|
fontSize: 28.sp,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final userProvider = Provider.of<UserProvider>(context);
|
|
return SizedBox(
|
|
width: 465.w,
|
|
child: Drawer(
|
|
child: ListView(
|
|
children: [
|
|
SizedBox(
|
|
height: 80.w - 40.w + ScreenUtil().statusBarHeight,
|
|
),
|
|
//leading
|
|
Container(
|
|
margin: EdgeInsets.only(bottom: 80.w),
|
|
width: double.infinity,
|
|
child: Row(
|
|
children: [
|
|
SizedBox(width: 32.w),
|
|
//头像按钮
|
|
AkuRoundButton(
|
|
height: 72.w,
|
|
onPressed: () {},
|
|
child: CircleAvatar(
|
|
radius: 36.w,
|
|
backgroundColor: Colors.grey,
|
|
child: userProvider.isSigned ? null : null,
|
|
),
|
|
),
|
|
SizedBox(width: 24.w),
|
|
Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
//登录按钮
|
|
InkWell(
|
|
onTap: () {},
|
|
child: userProvider.isSigned
|
|
? Text(
|
|
userProvider.userInfoModel.nickName,
|
|
style: TextStyle(
|
|
color: AppStyle.primaryTextColor,
|
|
fontSize: 28.sp,
|
|
fontWeight: FontWeight.bold),
|
|
)
|
|
: Text('登录',
|
|
style: TextStyle(
|
|
color: AppStyle.primaryTextColor,
|
|
fontSize: 28.sp,
|
|
fontWeight: FontWeight.bold)),
|
|
),
|
|
InkWell(
|
|
onTap: () {},
|
|
child: Row(
|
|
children: [
|
|
Icon(Icons.location_on_outlined, size: 33.w),
|
|
Text(
|
|
'深圳华悦茂峰',
|
|
style: TextStyle(
|
|
color: AppStyle.primaryTextColor,
|
|
fontSize: 24.sp),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
],
|
|
),
|
|
),
|
|
_myListTile(
|
|
R.ASSETS_USER_IC_PERSON_PNG,
|
|
'个人信息',
|
|
onPressed: () {
|
|
userProvider.isSigned
|
|
? Get.to(UserInfoPage())
|
|
: Get.to(LoginPage());
|
|
},
|
|
),
|
|
_myListTile(R.ASSETS_USER_IC_KEFU_PNG, '联系客服'),
|
|
_myListTile(R.ASSETS_USER_IC_SETUP_PNG, '设置', onPressed: () {
|
|
Get.to(SettingsPage());
|
|
}),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|