323 lines
15 KiB
Dart
323 lines
15 KiB
Dart
import 'package:flutter/cupertino.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter/services.dart';
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:school_asignment_app/common/job/user_info.dart';
|
|
import 'package:school_asignment_app/common/store/app_storage_key.dart';
|
|
import 'package:school_asignment_app/common/store/user_store.dart';
|
|
import 'package:school_asignment_app/common/utils/storage.dart';
|
|
import 'package:school_asignment_app/page/global_widget/global_scaffold.dart';
|
|
import 'package:school_asignment_app/page/global_widget/my_text.dart';
|
|
import 'package:school_asignment_app/page/home_page/home_logic.dart';
|
|
import 'package:cached_network_image/cached_network_image.dart';
|
|
import 'package:school_asignment_app/routes/app_pages.dart';
|
|
|
|
class MyInfo extends StatelessWidget {
|
|
MyInfo({Key? key}) : super(key: key);
|
|
late Rx<UserInfo?> userInfo = UserStore.to.userInfo;
|
|
|
|
// 确认对话框
|
|
_showAlertDialog(context1) async {
|
|
await showDialog(
|
|
// 表示点击灰色背景的时候是否消失弹出框
|
|
barrierDismissible: false,
|
|
context: context1,
|
|
builder: (context) {
|
|
return AlertDialog(title: quickText("提示信息"), content: quickText("您确定要退出登录吗?"), actions: <Widget>[
|
|
TextButton(
|
|
child: quickText("取消"),
|
|
onPressed: () {
|
|
Navigator.pop(context, 'Cancle');
|
|
},
|
|
),
|
|
TextButton(
|
|
child: quickText("确定"),
|
|
onPressed: () {
|
|
/* ref.read(markingKeyboardProvider.notifier).clean();
|
|
ref.read(markingSubtopicSwitchingProvider.notifier).clean();
|
|
ref.read(userTokenProvider.notifier).clean();
|
|
ref.read(userProvider.notifier).clean();*/
|
|
StorageService.to.remove(AppStorageKey.token.value);
|
|
StorageService.to.remove(AppStorageKey.userInfo.value);
|
|
Navigator.pop(context, "Ok");
|
|
Get.offAllNamed(Routes.login);
|
|
})
|
|
]);
|
|
});
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final personalInfoTitleStly = TextStyle(
|
|
color: const Color.fromRGBO(80, 87, 103, 1),
|
|
fontSize: 16.sp,
|
|
);
|
|
final personalInfoValStly = TextStyle(
|
|
color: const Color.fromRGBO(148, 163, 182, 1),
|
|
fontSize: 16.sp,
|
|
);
|
|
|
|
return GlobalScaffold(
|
|
active: 3,
|
|
body: AnnotatedRegion(
|
|
value: const SystemUiOverlayStyle(
|
|
statusBarColor: Colors.transparent,
|
|
systemNavigationBarIconBrightness: Brightness.light,
|
|
statusBarIconBrightness: Brightness.light,
|
|
statusBarBrightness: Brightness.dark,
|
|
),
|
|
child: Stack(
|
|
children: [
|
|
SizedBox(
|
|
height: double.infinity,
|
|
child: Column(
|
|
children: [
|
|
Container(
|
|
height: 240.h,
|
|
width: double.infinity,
|
|
decoration: const BoxDecoration(
|
|
image: DecorationImage(
|
|
image: AssetImage('assets/images/personal_bgi.png'),
|
|
fit: BoxFit.cover,
|
|
),
|
|
),
|
|
),
|
|
Expanded(
|
|
child: Container(
|
|
color: const Color.fromRGBO(248, 248, 248, 1),
|
|
))
|
|
],
|
|
),
|
|
),
|
|
SafeArea(
|
|
child: Scaffold(
|
|
backgroundColor: Colors.transparent,
|
|
body: Column(
|
|
children: [
|
|
Stack(
|
|
alignment: const FractionalOffset(0.04, 0.1),
|
|
children: [
|
|
Container(
|
|
height: 200.h,
|
|
alignment: Alignment.center,
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
ClipRRect(
|
|
borderRadius: BorderRadius.circular(80.w),
|
|
child: Container(
|
|
width: 80.w,
|
|
height: 80.w,
|
|
padding: EdgeInsets.all(4.w),
|
|
decoration: BoxDecoration(
|
|
border: Border.all(
|
|
width: 1.w,
|
|
color: Colors.white,
|
|
),
|
|
borderRadius: BorderRadius.all(
|
|
Radius.circular(40.w),
|
|
),
|
|
boxShadow: [
|
|
BoxShadow(
|
|
color: const Color.fromRGBO(46, 91, 255, 0.2),
|
|
offset: Offset(4.w, 6.h), //阴影y轴偏移量
|
|
blurRadius: 8, //阴影模糊程度
|
|
spreadRadius: 0.2, //阴影扩散程度
|
|
)
|
|
],
|
|
),
|
|
child: Image.asset('assets/images/default_user_dead.png')
|
|
|
|
/* CachedNetworkImage(
|
|
fit: BoxFit.cover,
|
|
imageUrl:'',
|
|
placeholder: (context, url) => Image.asset('assets/images/default_user_dead.png'),
|
|
errorWidget: (context, url, error) =>
|
|
Image.asset('assets/images/default_user_dead.png'),
|
|
),*/
|
|
),
|
|
),
|
|
InkWell(
|
|
onTap: () {
|
|
/*if (tokenState == '' || userState.id == '') {
|
|
toLoginPage(context);
|
|
}*/
|
|
},
|
|
child: Container(
|
|
margin: EdgeInsets.only(top: 16.h),
|
|
child: Text(
|
|
userInfo.value!.givenname != '' ? userInfo.value!.givenname : '请前往登录',
|
|
style: TextStyle(fontSize: 16.sp, color: Colors.white),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
/* InkWell(
|
|
onTap: () => Get.back(),
|
|
child: Icon(Icons.arrow_back_ios_new_rounded, color: Colors.white, size: 24.sp),
|
|
),*/
|
|
],
|
|
),
|
|
SizedBox(height: 14.h),
|
|
Container(
|
|
margin: EdgeInsets.symmetric(vertical: 22.h, horizontal: 16.w),
|
|
padding: EdgeInsets.symmetric(vertical: 22.h, horizontal: 16.w),
|
|
height: 310.h,
|
|
decoration: BoxDecoration(
|
|
borderRadius: BorderRadius.all(Radius.circular(6.w)),
|
|
color: Colors.white,
|
|
boxShadow: const [
|
|
BoxShadow(
|
|
color: Color.fromRGBO(46, 91, 255, 0.1),
|
|
offset: Offset.zero, //阴影y轴偏移量
|
|
blurRadius: 20, //阴影模糊程度
|
|
spreadRadius: 10, //阴影扩散程度
|
|
)
|
|
],
|
|
),
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: [
|
|
Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: [
|
|
Text('账号', style: personalInfoTitleStly),
|
|
Text(userInfo.value!.givenname, style: personalInfoValStly)
|
|
],
|
|
),
|
|
Container(
|
|
height: 1.w,
|
|
color: const Color.fromRGBO(240, 243, 255, 1),
|
|
),
|
|
/* Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: [
|
|
Text('所在学校', style: personalInfoTitleStly),
|
|
Text(userState.schoolName, style: personalInfoValStly)
|
|
],
|
|
),
|
|
Container(
|
|
height: 1.w,
|
|
color: const Color.fromRGBO(240, 243, 255, 1),
|
|
),
|
|
Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: [
|
|
Text('担任职位', style: personalInfoTitleStly),
|
|
SizedBox(width: 20.w),
|
|
Expanded(
|
|
child: Text(
|
|
userState.positionNames.map((e) => e).toList().join(','),
|
|
maxLines: 2,
|
|
textAlign: TextAlign.right,
|
|
overflow: TextOverflow.ellipsis,
|
|
style: personalInfoValStly,
|
|
),
|
|
)
|
|
],
|
|
),
|
|
Container(height: 1.w, color: const Color.fromRGBO(240, 243, 255, 1)),
|
|
Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: [
|
|
Text('所授科目', style: personalInfoTitleStly),
|
|
Expanded(
|
|
child: Text(
|
|
userState.subjectIds.map((e) => getSubjectEnumName(e)).toList().join(','),
|
|
maxLines: 2,
|
|
textAlign: TextAlign.right,
|
|
overflow: TextOverflow.ellipsis,
|
|
style: personalInfoValStly,
|
|
),
|
|
)
|
|
],
|
|
),*/
|
|
Container(height: 1.w, color: const Color.fromRGBO(240, 243, 255, 1)),
|
|
Padding(
|
|
padding: EdgeInsets.only(top: 10.h),
|
|
child: InkWell(
|
|
onTap: () {
|
|
Get.toNamed(Routes.otherPage);
|
|
},
|
|
child: Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: [
|
|
Text('其他', style: personalInfoTitleStly),
|
|
Icon(
|
|
Icons.arrow_forward_ios,
|
|
color: const Color.fromRGBO(80, 87, 103, 1),
|
|
size: 16.sp,
|
|
)
|
|
],
|
|
),
|
|
),
|
|
)
|
|
],
|
|
),
|
|
),
|
|
Expanded(
|
|
child: Column(
|
|
children: [
|
|
const Expanded(child: SizedBox()),
|
|
Container(
|
|
margin: EdgeInsets.only(bottom: 40.h),
|
|
alignment: Alignment.bottomCenter,
|
|
child: InkWell(
|
|
child: Container(
|
|
padding: EdgeInsets.symmetric(vertical: 14.h),
|
|
margin: EdgeInsets.only(right: 16.w, left: 16.w),
|
|
decoration: BoxDecoration(
|
|
borderRadius: BorderRadius.all(
|
|
Radius.circular(6.w),
|
|
),
|
|
color: Colors.white,
|
|
boxShadow: [
|
|
BoxShadow(
|
|
color: const Color.fromRGBO(46, 91, 255, 0.2),
|
|
offset: Offset(2.w, 2.h), //阴影y轴偏移量
|
|
blurRadius: 14, //阴影模糊程度
|
|
spreadRadius: 0.5, //阴影扩散程度
|
|
)
|
|
],
|
|
),
|
|
child: Row(
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Icon(
|
|
Icons.exit_to_app_outlined,
|
|
size: 16.sp,
|
|
color: const Color.fromRGBO(148, 163, 182, 1),
|
|
),
|
|
Container(
|
|
width: 6.w,
|
|
),
|
|
Text(
|
|
'退出登录',
|
|
style: TextStyle(color: const Color.fromRGBO(148, 163, 182, 1), fontSize: 16.sp),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
onTap: () {
|
|
_showAlertDialog(context);
|
|
},
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|