Merge branch 'master_hyx'

This commit is contained in:
anfe 2024-04-09 10:26:10 +08:00
commit 2447cb43dc

View File

@ -12,8 +12,7 @@ class SendEmailNotificationPage extends StatefulWidget {
const SendEmailNotificationPage({Key? key}) : super(key: key); const SendEmailNotificationPage({Key? key}) : super(key: key);
@override @override
State<SendEmailNotificationPage> createState() => State<SendEmailNotificationPage> createState() => _SendEmailNotificationPageState();
_SendEmailNotificationPageState();
} }
class _SendEmailNotificationPageState extends State<SendEmailNotificationPage> { class _SendEmailNotificationPageState extends State<SendEmailNotificationPage> {
@ -21,15 +20,12 @@ class _SendEmailNotificationPageState extends State<SendEmailNotificationPage> {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
_emailController.text = _emailController.text = "亲爱的用户 \n\n你收到电子钥匙请试用APP(www.baidu.com)或小程序开锁 \n\n星锁";
"亲爱的用户 \n\n你收到电子钥匙请试用APP(www.baidu.com)或小程序开锁 \n\n星锁";
return Scaffold( return Scaffold(
backgroundColor: AppColors.mainBackgroundColor, backgroundColor: AppColors.mainBackgroundColor,
appBar: TitleAppBar( appBar: TitleAppBar(barTitle: "邮件通知", haveBack: true, backgroundColor: AppColors.mainColor),
barTitle: "邮件通知", body: SingleChildScrollView(
haveBack: true, child: Column(
backgroundColor: AppColors.mainColor),
body: Column(
children: [ children: [
CommonItem( CommonItem(
leftTitel: TranslationLoader.lanKeys!.receiver!.tr, leftTitel: TranslationLoader.lanKeys!.receiver!.tr,
@ -42,16 +38,11 @@ class _SendEmailNotificationPageState extends State<SendEmailNotificationPage> {
isHaveDirection: true, isHaveDirection: true,
), ),
Container(height: 10.h), Container(height: 10.h),
CommonItem( CommonItem(leftTitel: "模板", rightTitle: "默认模板", isHaveDirection: true, isHaveLine: true),
leftTitel: "模板",
rightTitle: "默认模板",
isHaveDirection: true,
isHaveLine: true),
Container( Container(
height: 360.h, height: 360.h,
color: Colors.white, color: Colors.white,
padding: EdgeInsets.only( padding: EdgeInsets.only(left: 20.w, right: 20.w, top: 20.h, bottom: 20.h),
left: 20.w, right: 20.w, top: 20.h, bottom: 20.h),
child: TextField( child: TextField(
maxLines: 8, maxLines: 8,
maxLength: 1000, maxLength: 1000,
@ -103,6 +94,7 @@ class _SendEmailNotificationPageState extends State<SendEmailNotificationPage> {
onClick: () {}), onClick: () {}),
], ],
), ),
),
); );
} }
} }