You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			64 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Dart
		
	
			
		
		
	
	
			64 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Dart
		
	
import 'package:easy_localization/src/public_ext.dart';
 | 
						|
import 'package:flutter/material.dart';
 | 
						|
import 'package:mohem_flutter_app/classes/colors.dart';
 | 
						|
import 'package:mohem_flutter_app/extensions/int_extensions.dart';
 | 
						|
import 'package:mohem_flutter_app/extensions/string_extensions.dart';
 | 
						|
import 'package:mohem_flutter_app/extensions/widget_extensions.dart';
 | 
						|
import 'package:mohem_flutter_app/generated/locale_keys.g.dart';
 | 
						|
import 'package:mohem_flutter_app/widgets/button/default_button.dart';
 | 
						|
 | 
						|
class ConfirmDialog extends StatelessWidget {
 | 
						|
  final String? title;
 | 
						|
  final String message;
 | 
						|
  final String? okTitle;
 | 
						|
  final VoidCallback? onTap;
 | 
						|
 | 
						|
  const ConfirmDialog({Key? key, this.title, required this.message, this.okTitle, this.onTap}) : super(key: key);
 | 
						|
 | 
						|
  @override
 | 
						|
  Widget build(BuildContext context) {
 | 
						|
    return Dialog(
 | 
						|
      backgroundColor: Colors.white,
 | 
						|
      shape: const RoundedRectangleBorder(),
 | 
						|
      insetPadding: const EdgeInsets.only(left: 21, right: 21),
 | 
						|
      child: Padding(
 | 
						|
        padding: const EdgeInsets.only(left: 20, right: 20, top: 18, bottom: 28),
 | 
						|
        child: Column(
 | 
						|
          crossAxisAlignment: CrossAxisAlignment.start,
 | 
						|
          mainAxisSize: MainAxisSize.min,
 | 
						|
          children: [
 | 
						|
            Row(
 | 
						|
              crossAxisAlignment: CrossAxisAlignment.start,
 | 
						|
              children: [
 | 
						|
                Expanded(
 | 
						|
                  child: Text(
 | 
						|
                    title ?? LocaleKeys.confirm.tr(),
 | 
						|
                    style: const TextStyle(fontSize: 24, fontWeight: FontWeight.w600, color: MyColors.darkTextColor, height: 35 / 24, letterSpacing: -0.96),
 | 
						|
                  ).paddingOnly(top: 16),
 | 
						|
                ),
 | 
						|
                IconButton(
 | 
						|
                  padding: EdgeInsets.zero,
 | 
						|
                  icon: const Icon(Icons.close),
 | 
						|
                  color: MyColors.darkTextColor,
 | 
						|
                  constraints: const BoxConstraints(),
 | 
						|
                  onPressed: () {
 | 
						|
                    Navigator.pop(context);
 | 
						|
                  },
 | 
						|
                )
 | 
						|
              ],
 | 
						|
            ),
 | 
						|
            message.toText16(color: MyColors.lightGrayColor),
 | 
						|
            28.height,
 | 
						|
            DefaultButton(
 | 
						|
              okTitle ?? LocaleKeys.ok.tr(),
 | 
						|
              onTap ?? () => Navigator.pop(context),
 | 
						|
              textColor: Colors.white,
 | 
						|
              //color: Ap.green,
 | 
						|
            ),
 | 
						|
          ],
 | 
						|
        ),
 | 
						|
      ),
 | 
						|
    );
 | 
						|
  }
 | 
						|
}
 |