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.

83 lines
2.4 KiB

4 years ago
import 'package:flutter/material.dart';
import 'package:huixiang/generated/l10n.dart';
3 years ago
import 'package:huixiang/utils/font_weight.dart';
4 years ago
import 'package:huixiang/view_widget/my_appbar.dart';
4 years ago
import 'package:huixiang/view_widget/round_button.dart';
4 years ago
import 'package:flutter_screenutil/flutter_screenutil.dart';
4 years ago
class WriteOffSuccessPage extends StatefulWidget {
@override
State<StatefulWidget> createState() {
return _WriteOffSuccessPage();
}
}
class _WriteOffSuccessPage extends State<WriteOffSuccessPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
4 years ago
appBar: MyAppBar(
title: S.of(context).hexiaomaxiangqing,
titleColor: Colors.black,
titleSize: 18.sp,
background: Color(0xFFFAFAFA),
leadingColor: Colors.black,
4 years ago
),
body: Container(
alignment: Alignment.center,
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
SizedBox(
4 years ago
height: 46.h,
4 years ago
),
Image.asset(
"assets/image/icon_order_success.webp",
4 years ago
width: 76.w,
height: 76.h,
4 years ago
fit: BoxFit.contain,
),
SizedBox(
4 years ago
height: 16.h,
4 years ago
),
Text(
S.of(context).hexiaochenggong,
style: TextStyle(
color: Color(0xFF353535),
4 years ago
fontSize: 21.sp,
3 years ago
fontWeight: MyFontWeight.semi_bold),
4 years ago
),
SizedBox(
4 years ago
height: 12.h,
4 years ago
),
Text(
S.of(context).dangqianshangpinduihuanhexiaoma,
style: TextStyle(
3 years ago
color: Color(0xFF727272),
fontSize: 12.sp,
3 years ago
fontWeight: MyFontWeight.semi_bold,
3 years ago
),
4 years ago
),
SizedBox(
4 years ago
height: 40.h,
4 years ago
),
Container(
4 years ago
margin: EdgeInsets.only(left: 20.w, right: 20.w),
4 years ago
child: RoundButton(
text: S.of(context).fanhuiduihuanlishi,
textColor: Colors.white,
backgroup: Color(0xFF32A060),
radius: 4,
3 years ago
fontWeight: MyFontWeight.semi_bold,
4 years ago
fontSize: 16.sp,
padding: EdgeInsets.only(top: 12.h, bottom: 12.h),
4 years ago
),
)
],
),
),
);
}
}