passo_mobile_app/lib/utils/alerts.dart

64 lines
1.9 KiB
Dart
Raw Normal View History

2022-12-20 06:26:37 +00:00
import 'package:awesome_dialog/awesome_dialog.dart';
import 'package:flutter/material.dart';
2023-02-27 06:26:27 +00:00
import 'package:unit2/theme-data.dart/btn-style.dart';
import 'package:unit2/theme-data.dart/colors.dart';
2022-12-20 06:26:37 +00:00
import 'package:unit2/utils/global.dart';
2023-02-15 05:23:06 +00:00
confirmAlert(context, Function() yes,String title, String subtitle) {
2022-12-20 06:26:37 +00:00
AwesomeDialog(
context: context,
dialogType: DialogType.question,
borderSide: const BorderSide(
color: Colors.green,
width: 0,
),
width: blockSizeHorizontal * 90,
buttonsBorderRadius: const BorderRadius.all(
Radius.circular(2),
),
dismissOnTouchOutside: false,
dismissOnBackKeyPress: false,
// onDismissCallback: (type) {
// ScaffoldMessenger.of(context).showSnackBar(
// SnackBar(
// content: Text('Dismissed by $type'),
// ),
// );
// },
headerAnimationLoop: false,
animType: AnimType.bottomSlide,
2023-02-15 05:23:06 +00:00
title: title,
desc: subtitle,
2022-12-20 06:26:37 +00:00
btnOkText: "Yes",
btnCancelText: "No",
showCloseIcon: false,
btnCancelOnPress: () {},
btnOkOnPress: yes,
).show();
}
2023-02-23 00:53:14 +00:00
errorAlert(context, title, description,Function() func) {
2022-12-20 06:26:37 +00:00
AwesomeDialog(
width: blockSizeHorizontal * 90,
context: context,
2022-12-20 06:26:37 +00:00
dialogType: DialogType.error,
animType: AnimType.scale,
headerAnimationLoop: false,
title: title,
desc: description,
2023-02-27 06:26:27 +00:00
btnOk: SizedBox(height: 50,child: ElevatedButton(onPressed:func, style: mainBtnStyle(primary, Colors.transparent, second), child: const Text("OK")), )
2023-02-23 00:53:14 +00:00
).show();
}
successAlert(context, title, description,Function() func) {
AwesomeDialog(
width: blockSizeHorizontal * 90,
context: context,
dialogType: DialogType.success,
animType: AnimType.scale,
headerAnimationLoop: false,
title: title,
desc: description,
btnOk: SizedBox(height: 50,child: ElevatedButton(style: mainBtnStyle(success2, Colors.transparent, success), onPressed: func, child: const Text("OK")), )
2022-12-20 06:26:37 +00:00
).show();
}