h_alert_dialog
A new Flutter package project for simple and beautiful dialogs
Usage
To use this package, add h_alert_dialog as a dependency in your pubspec.yaml file. And add this import to your file.
import 'package:h_alert_dialog/h_alert_dialog.dart';
ScreenShots
Example
Code
HAlertDialog.showCustomAlertBox(
context: context,
timerInSeconds: 2,
backgroundColor: Colors.green,
title: 'Success',
description: 'The proccess done successfully',
icon: Icons.done,
iconSize: 32,
iconColor: Colors.green,
titleFontFamily: 'Raleway',
titleFontSize: 22,
titleFontColor: Colors.black54,
descriptionFontFamily: 'Raleway',
descriptionFontColor: Colors.black45,
descriptionFontSize: 18,
);