25 lines
688 B
Dart
25 lines
688 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:toastification/toastification.dart';
|
|
|
|
class AppToast {
|
|
static void success(BuildContext context, String message) {
|
|
toastification.show(
|
|
context: context,
|
|
type: ToastificationType.success,
|
|
style: ToastificationStyle.fillColored,
|
|
title: Text(message),
|
|
autoCloseDuration: const Duration(seconds: 3),
|
|
);
|
|
}
|
|
|
|
static void error(BuildContext context, String message) {
|
|
toastification.show(
|
|
context: context,
|
|
type: ToastificationType.error,
|
|
style: ToastificationStyle.fillColored,
|
|
title: Text(message),
|
|
autoCloseDuration: const Duration(seconds: 3),
|
|
);
|
|
}
|
|
}
|