558 lines
26 KiB
Dart
558 lines
26 KiB
Dart
import 'package:ef/ef.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutterflow_ui/flutterflow_ui.dart';
|
|
import 'package:vbvs_app/common/color/appConstants.dart';
|
|
import 'package:vbvs_app/common/util/FitTool.dart';
|
|
import 'package:vbvs_app/common/util/MyUtils.dart';
|
|
import 'package:vbvs_app/component/tool/CustomCard.dart';
|
|
import 'package:vbvs_app/controller/device/blueteeth_bind_controller.dart';
|
|
import 'package:vbvs_app/controller/main_bottom/global_controller.dart';
|
|
import 'package:vbvs_app/controller/person/person_controller.dart';
|
|
import 'package:vbvs_app/controller/theme_controller/ThemeController.dart';
|
|
import 'package:vbvs_app/controller/user_info_controller.dart';
|
|
import 'package:vbvs_app/pages/person/select_time.dart';
|
|
|
|
class PersonPage extends StatefulWidget {
|
|
const PersonPage({super.key});
|
|
|
|
@override
|
|
State<PersonPage> createState() => _EPageState();
|
|
}
|
|
|
|
class _EPageState extends State<PersonPage> {
|
|
GlobalController globalController = Get.find();
|
|
UserInfoController userInfoController = Get.find();
|
|
BlueteethBindController blueteethBindController = Get.find();
|
|
PersonController personController = Get.find();
|
|
ThemeController themeController = Get.find();
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return LayoutBuilder(
|
|
builder: (context, bodySize) => GestureDetector(
|
|
onTap: () => FocusScope.of(context).unfocus(),
|
|
child: Container(
|
|
decoration: BoxDecoration(
|
|
image: DecorationImage(
|
|
image: AssetImage('assets/img/bgNoImg.png'), // 本地图片
|
|
fit: BoxFit.fill, // 填满整个 Container
|
|
),
|
|
),
|
|
child: Scaffold(
|
|
backgroundColor: Colors.transparent, // 加上这一行
|
|
appBar: AppBar(
|
|
backgroundColor: themeController.currentColor.sc17,
|
|
automaticallyImplyLeading: false,
|
|
iconTheme: IconThemeData(
|
|
color: themeController.currentColor.sc3,
|
|
),
|
|
titleSpacing: 0,
|
|
// leading: returnIconButtom,
|
|
title: Container(
|
|
width: double.infinity,
|
|
height: 180.rpx,
|
|
child: Stack(
|
|
alignment: Alignment.center,
|
|
children: [
|
|
/// 居中标题
|
|
Text(
|
|
'人员资料.标题'.tr,
|
|
style: FlutterFlowTheme.of(context).bodyMedium.override(
|
|
fontFamily: 'Readex Pro',
|
|
color: themeController.currentColor.sc3,
|
|
letterSpacing: 0,
|
|
fontSize: 30.rpx,
|
|
),
|
|
),
|
|
|
|
/// 左边返回按钮
|
|
Positioned(
|
|
left: 0,
|
|
child: returnIconButtom,
|
|
),
|
|
Positioned(
|
|
right: 20.rpx,
|
|
child: CustomCard(
|
|
borderRadius: 20.rpx,
|
|
onTap: () async {
|
|
Get.offAllNamed("/bindDeviceSuccess");
|
|
},
|
|
colors: [
|
|
themeController.currentColor.sc1,
|
|
themeController.currentColor.sc2,
|
|
],
|
|
child: Container(
|
|
width: 100.rpx,
|
|
height: 60.rpx,
|
|
alignment: Alignment.center,
|
|
padding: EdgeInsetsDirectional.fromSTEB(
|
|
16.rpx, 0, 16.rpx, 0),
|
|
child: Text(
|
|
'人员资料.保存'.tr,
|
|
style: FlutterFlowTheme.of(context)
|
|
.titleSmall
|
|
.override(
|
|
fontFamily: 'Inter Tight',
|
|
color: themeController.currentColor.sc3,
|
|
letterSpacing: 0.0,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
|
|
actions: [],
|
|
centerTitle: false,
|
|
),
|
|
|
|
body: SafeArea(
|
|
top: true,
|
|
child: Padding(
|
|
padding: EdgeInsetsDirectional.fromSTEB(30.rpx, 0, 30.rpx, 0),
|
|
child: SingleChildScrollView(
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.max,
|
|
children: [
|
|
Padding(
|
|
padding: EdgeInsetsDirectional.fromSTEB(
|
|
70.rpx, 141.rpx, 70.rpx, 0),
|
|
child: Container(
|
|
width: double.infinity,
|
|
height: 100.rpx,
|
|
decoration: BoxDecoration(
|
|
borderRadius: BorderRadius.circular(50.rpx),
|
|
border: Border.all(
|
|
color: Color(0xFFF3EDED),
|
|
),
|
|
),
|
|
child: Align(
|
|
alignment: AlignmentDirectional(0, 0),
|
|
child: TextFormField(
|
|
// controller: _model.textController1,
|
|
// focusNode: _model.textFieldFocusNode1,
|
|
autofocus: false,
|
|
obscureText: false,
|
|
decoration: InputDecoration(
|
|
fillColor: Colors.transparent,
|
|
isDense: true,
|
|
labelStyle: FlutterFlowTheme.of(context)
|
|
.labelMedium
|
|
.override(
|
|
fontFamily: 'Inter',
|
|
letterSpacing: 0.0,
|
|
color: themeController.currentColor.sc3,
|
|
),
|
|
hintText: '人员资料.名字输入提示'.tr,
|
|
hintStyle: FlutterFlowTheme.of(context)
|
|
.labelMedium
|
|
.override(
|
|
fontFamily: 'Inter',
|
|
fontSize: 26.rpx,
|
|
letterSpacing: 0.0,
|
|
),
|
|
enabledBorder: OutlineInputBorder(
|
|
borderSide: BorderSide(
|
|
color: Color(0x00000000),
|
|
width: 1.rpx,
|
|
),
|
|
borderRadius: BorderRadius.circular(8.rpx),
|
|
),
|
|
focusedBorder: OutlineInputBorder(
|
|
borderSide: BorderSide(
|
|
color: Color(0x00000000),
|
|
width: 1.rpx,
|
|
),
|
|
borderRadius: BorderRadius.circular(8.rpx),
|
|
),
|
|
errorBorder: OutlineInputBorder(
|
|
borderSide: BorderSide(
|
|
color: FlutterFlowTheme.of(context).error,
|
|
width: 1.rpx,
|
|
),
|
|
borderRadius: BorderRadius.circular(8.rpx),
|
|
),
|
|
focusedErrorBorder: OutlineInputBorder(
|
|
borderSide: BorderSide(
|
|
color: FlutterFlowTheme.of(context).error,
|
|
width: 1.rpx,
|
|
),
|
|
borderRadius: BorderRadius.circular(8.rpx),
|
|
),
|
|
filled: true,
|
|
),
|
|
style: FlutterFlowTheme.of(context)
|
|
.bodyMedium
|
|
.override(
|
|
fontFamily: 'Inter',
|
|
letterSpacing: 0.0,
|
|
color: themeController.currentColor.sc3,
|
|
),
|
|
textAlign: TextAlign.center,
|
|
cursorColor:
|
|
FlutterFlowTheme.of(context).primaryText,
|
|
// validator: _model.textController1Validator
|
|
// .asValidator(context),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
Align(
|
|
alignment: AlignmentDirectional(0, 0),
|
|
child: Padding(
|
|
padding:
|
|
EdgeInsetsDirectional.fromSTEB(0, 90.rpx, 0, 0),
|
|
child: Container(
|
|
width: double.infinity,
|
|
decoration: BoxDecoration(),
|
|
child: Align(
|
|
alignment: AlignmentDirectional(-1, 0),
|
|
child: Row(
|
|
mainAxisSize: MainAxisSize.max,
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Column(
|
|
mainAxisSize: MainAxisSize.max,
|
|
children: [
|
|
Container(
|
|
width: 90.rpx,
|
|
height: 90.rpx,
|
|
decoration: BoxDecoration(),
|
|
child: Container(
|
|
clipBehavior: Clip.antiAlias,
|
|
decoration: BoxDecoration(
|
|
shape: BoxShape.circle,
|
|
),
|
|
child: Image.asset(
|
|
"assets/img/man.png",
|
|
fit: BoxFit.cover,
|
|
),
|
|
),
|
|
),
|
|
Text(
|
|
'男',
|
|
style: FlutterFlowTheme.of(context)
|
|
.bodyMedium
|
|
.override(
|
|
fontFamily: 'Inter',
|
|
color: themeController
|
|
.currentColor.sc3,
|
|
fontSize: 26.rpx,
|
|
letterSpacing: 0.0,
|
|
),
|
|
),
|
|
].divide(SizedBox(height: 14.rpx)),
|
|
),
|
|
Column(
|
|
mainAxisSize: MainAxisSize.max,
|
|
children: [
|
|
Container(
|
|
width: 90.rpx,
|
|
height: 90.rpx,
|
|
decoration: BoxDecoration(),
|
|
child: Container(
|
|
clipBehavior: Clip.antiAlias,
|
|
decoration: BoxDecoration(
|
|
shape: BoxShape.circle,
|
|
),
|
|
child: Image.asset(
|
|
"assets/img/woman.png",
|
|
fit: BoxFit.cover,
|
|
),
|
|
),
|
|
),
|
|
Text(
|
|
'女',
|
|
style: FlutterFlowTheme.of(context)
|
|
.bodyMedium
|
|
.override(
|
|
fontFamily: 'Inter',
|
|
color: themeController
|
|
.currentColor.sc3,
|
|
fontSize: 26.rpx,
|
|
letterSpacing: 0.0,
|
|
),
|
|
),
|
|
].divide(SizedBox(height: 14.rpx)),
|
|
),
|
|
].divide(SizedBox(width: 170.rpx)),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
Padding(
|
|
padding: EdgeInsetsDirectional.fromSTEB(
|
|
70.rpx, 50.rpx, 70.rpx, 0),
|
|
child: Container(
|
|
height: 100.rpx,
|
|
decoration: BoxDecoration(
|
|
borderRadius: BorderRadius.circular(50.rpx),
|
|
border: Border.all(color: Color(0xFFF3EDED)),
|
|
),
|
|
child: InkWell(
|
|
onTap: () {
|
|
FocusScope.of(context).requestFocus(FocusNode());
|
|
Future.delayed(Duration(milliseconds: 250), () {
|
|
showDateSelectionDialog(
|
|
context,
|
|
checkDate: personController.model.birthday ??
|
|
DateTime.now(),
|
|
checkChange: (DateTime d) {
|
|
personController.model.birthday = d;
|
|
personController.updateAll();
|
|
},
|
|
);
|
|
});
|
|
},
|
|
child: Center(
|
|
child: Text(
|
|
personController.model.birthday != null
|
|
? DateFormat("yyyy年MM月dd日").format(
|
|
personController.model.birthday!)
|
|
: '人员资料.生日输入提示'.tr,
|
|
textAlign: TextAlign.right,
|
|
style: FlutterFlowTheme.of(context)
|
|
.bodyMedium
|
|
.override(
|
|
fontFamily: 'Readex Pro',
|
|
color: personController.model.birthday !=
|
|
null
|
|
? themeController.currentColor.sc3
|
|
: themeController.currentColor.sc4,
|
|
fontSize:
|
|
AppConstants().normal_text_fontSize,
|
|
letterSpacing: 0,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
Padding(
|
|
padding: EdgeInsetsDirectional.fromSTEB(
|
|
70.rpx, 18.rpx, 70.rpx, 0),
|
|
child: Container(
|
|
width: double.infinity,
|
|
height: 100.rpx,
|
|
decoration: BoxDecoration(
|
|
borderRadius: BorderRadius.circular(50.rpx),
|
|
border: Border.all(
|
|
color: Color(0xFFF3EDED),
|
|
),
|
|
),
|
|
child: Align(
|
|
alignment: AlignmentDirectional(0, 0),
|
|
child: TextFormField(
|
|
// controller: _model.textController3,
|
|
// focusNode: _model.textFieldFocusNode3,
|
|
autofocus: false,
|
|
obscureText: false,
|
|
decoration: InputDecoration(
|
|
fillColor: Colors.transparent,
|
|
isDense: true,
|
|
labelStyle: FlutterFlowTheme.of(context)
|
|
.labelMedium
|
|
.override(
|
|
fontFamily: 'Inter',
|
|
letterSpacing: 0.0,
|
|
),
|
|
hintText: '人员资料.体重输入提示'.tr,
|
|
hintStyle: FlutterFlowTheme.of(context)
|
|
.labelMedium
|
|
.override(
|
|
fontFamily: 'Inter',
|
|
color: personController.model.weight !=
|
|
null
|
|
? themeController.currentColor.sc3
|
|
: themeController.currentColor.sc4,
|
|
fontSize:
|
|
AppConstants().normal_text_fontSize,
|
|
letterSpacing: 0.0,
|
|
),
|
|
enabledBorder: OutlineInputBorder(
|
|
borderSide: BorderSide(
|
|
color: Color(0x00000000),
|
|
width: 1.rpx,
|
|
),
|
|
borderRadius: BorderRadius.circular(8.rpx),
|
|
),
|
|
focusedBorder: OutlineInputBorder(
|
|
borderSide: BorderSide(
|
|
color: Color(0x00000000),
|
|
width: 1.rpx,
|
|
),
|
|
borderRadius: BorderRadius.circular(8.rpx),
|
|
),
|
|
errorBorder: OutlineInputBorder(
|
|
borderSide: BorderSide(
|
|
color: FlutterFlowTheme.of(context).error,
|
|
width: 1.rpx,
|
|
),
|
|
borderRadius: BorderRadius.circular(8.rpx),
|
|
),
|
|
focusedErrorBorder: OutlineInputBorder(
|
|
borderSide: BorderSide(
|
|
color: FlutterFlowTheme.of(context).error,
|
|
width: 1.rpx,
|
|
),
|
|
borderRadius: BorderRadius.circular(8.rpx),
|
|
),
|
|
filled: true,
|
|
),
|
|
style: FlutterFlowTheme.of(context)
|
|
.bodyMedium
|
|
.override(
|
|
fontFamily: 'Inter',
|
|
letterSpacing: 0.0,
|
|
color: themeController.currentColor.sc3,
|
|
),
|
|
textAlign: TextAlign.center,
|
|
cursorColor:
|
|
FlutterFlowTheme.of(context).primaryText,
|
|
// validator: _model.textController3Validator
|
|
// .asValidator(context),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional.fromSTEB(0, 117.rpx, 0, 0),
|
|
child: Container(
|
|
width: double.infinity,
|
|
decoration: BoxDecoration(),
|
|
child: Align(
|
|
alignment: AlignmentDirectional(0, 0),
|
|
child: Text(
|
|
'人员资料.疾病标题'.tr,
|
|
style: FlutterFlowTheme.of(context)
|
|
.bodyMedium
|
|
.override(
|
|
fontFamily: 'Inter',
|
|
color: Color(0xFFF3F4F5),
|
|
fontSize: 30.rpx,
|
|
letterSpacing: 0.0,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
Padding(
|
|
padding: EdgeInsetsDirectional.fromSTEB(
|
|
70.rpx, 70.rpx, 70.rpx, 0),
|
|
child: Container(
|
|
width: double.infinity,
|
|
decoration: BoxDecoration(),
|
|
),
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional.fromSTEB(0, 152.rpx, 0, 0),
|
|
child: Container(
|
|
width: double.infinity,
|
|
decoration: BoxDecoration(
|
|
borderRadius: BorderRadius.circular(20.rpx),
|
|
border: Border.all(
|
|
color: Color(0xFFE9E3E3),
|
|
),
|
|
),
|
|
child: Padding(
|
|
padding: EdgeInsetsDirectional.fromSTEB(
|
|
30.rpx, 30.rpx, 30.rpx, 30.rpx),
|
|
child: Row(
|
|
mainAxisSize: MainAxisSize.max,
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Padding(
|
|
padding: EdgeInsetsDirectional.fromSTEB(
|
|
0, 8.rpx, 0, 0),
|
|
child: Icon(
|
|
Icons.arrow_back,
|
|
color: Color(0xFFE4EBF0),
|
|
size: 24.rpx,
|
|
),
|
|
),
|
|
Expanded(
|
|
child: Text(
|
|
'人员资料.提示'.tr,
|
|
style: FlutterFlowTheme.of(context)
|
|
.bodyMedium
|
|
.override(
|
|
fontFamily: 'Inter',
|
|
color: Color(0xFFEEF3F8),
|
|
fontSize: 26.rpx,
|
|
letterSpacing: 0.0,
|
|
),
|
|
),
|
|
),
|
|
].divide(SizedBox(width: 23.rpx)),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildDeviceCard(BuildContext context,
|
|
{required String title, required String imageUrl, required String type}) {
|
|
return CustomCard(
|
|
borderRadius: 20.rpx, // 圆角大小
|
|
onTap: () {
|
|
if (type != null) {
|
|
if (type == '1') {
|
|
Get.toNamed("/blueteethDevice");
|
|
}
|
|
}
|
|
},
|
|
colors: [themeController.currentColor.sc17], // 背景色
|
|
child: Container(
|
|
width: double.infinity,
|
|
height: MediaQuery.sizeOf(context).height * 0.135,
|
|
constraints: BoxConstraints(
|
|
minHeight: 220.rpx,
|
|
),
|
|
padding: EdgeInsetsDirectional.fromSTEB(77.rpx, 0, 21.rpx, 0),
|
|
child: Row(
|
|
mainAxisSize: MainAxisSize.max,
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: [
|
|
Text(
|
|
title,
|
|
style: FlutterFlowTheme.of(context).bodyMedium.override(
|
|
fontFamily: 'Inter',
|
|
color: const Color(0xFFC2CED7),
|
|
fontSize: 30.rpx,
|
|
letterSpacing: 0.0,
|
|
),
|
|
),
|
|
ClipRRect(
|
|
borderRadius: BorderRadius.circular(8.rpx),
|
|
child: Image.asset(
|
|
imageUrl,
|
|
width: 212.rpx,
|
|
height: 168.rpx,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|