| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- import 'package:flutter_screenutil/flutter_screenutil.dart';
- import 'package:flutter_smart_dialog/flutter_smart_dialog.dart';
- import 'package:flutter/material.dart';
- import '../resource/assets.gen.dart';
- import '../resource/colors.gen.dart';
- import '../resource/string.gen.dart';
- import '../utils/styles.dart';
- class DeprecateDialog {
- static const String tag = "DeprecateDialog";
- static void show({Function? btnCancel, Function? btnConfirm}) {
- SmartDialog.show(
- tag: tag,
- backType: SmartBackType.block,
- clickMaskDismiss: true,
- maskColor: ColorName.black70,
- builder: (_) {
- return Column(
- crossAxisAlignment: CrossAxisAlignment.center,
- mainAxisAlignment: MainAxisAlignment.center,
- children: [
- Container(
- margin: EdgeInsets.symmetric(horizontal: 31.w),
- decoration: ShapeDecoration(
- color: Colors.white,
- shape: RoundedRectangleBorder(
- borderRadius: BorderRadius.circular(20.r),
- ),
- ),
- child: Stack(
- children: [
- Container(
- padding: EdgeInsets.symmetric(
- horizontal: 16.w,
- vertical: 24.h,
- ),
- child: Column(
- mainAxisSize: MainAxisSize.min,
- crossAxisAlignment: CrossAxisAlignment.center,
- mainAxisAlignment: MainAxisAlignment.center,
- children: [
- Text(
- StringName.loginDeleteAccount,
- style: Styles.getTextStyleBlack204W500(16.sp),
- ),
- SizedBox(height: 12.h),
- Text(
- StringName.loginDeleteAccountDesc,
- textAlign: TextAlign.center,
- style: TextStyle(
- color: Colors.black.withAlpha(204),
- fontSize: 14.sp,
- fontWeight: FontWeight.w400,
- ),
- ),
- SizedBox(height: 20.h),
- Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: [
- GestureDetector(
- onTap: () {
- if (btnConfirm != null) {
- btnConfirm();
- }
- SmartDialog.dismiss(tag: tag);
- },
- child: Container(
- height: 40.h,
- width: 128.r,
- alignment: Alignment.center,
- decoration: ShapeDecoration(
- color: const Color(0xFFFFE5E3),
- shape: RoundedRectangleBorder(
- borderRadius: BorderRadius.circular(50.r),
- ),
- ),
- child: Text(
- StringName.loginDeleteAccountConfirm,
- style: TextStyle(
- color: const Color(0xFFF44E45),
- fontSize: 16.sp,
- fontWeight: FontWeight.w500,
- ),
- ),
- ),
- ),
- GestureDetector(
- onTap: () {
- if (btnCancel != null) {
- btnCancel();
- }
- SmartDialog.dismiss();
- },
- child: Container(
- height: 40.h,
- width: 128.w,
- alignment: Alignment.center,
- decoration: ShapeDecoration(
- color: const Color(0xFFF5F4F9),
- shape: RoundedRectangleBorder(
- borderRadius: BorderRadius.circular(50.r),
- ),
- ),
- child: Text(
- StringName.loginDeleteAccountCancel,
- style: Styles.getTextStyleBlack102W500(16.sp),
- ),
- ),
- ),
- ],
- ),
- ],
- ),
- ),
- Positioned(
- right: 14.w,
- top: 14.h,
- child: GestureDetector(
- onTap: () {
- SmartDialog.dismiss();
- },
- child: Assets.images.iconCustomDialogClose.image(
- width: 24.w,
- height: 24.h,
- ),
- ),
- ),
- ],
- ),
- ),
- ],
- );
- },
- );
- }
- }
|