giff_dialog

Creator: coderz1093

Last updated:

Add to Cart

Description:

giff dialog

👏 Giff Dialogs #


A beautiful and custom alert dialog for flutter highly inspired from FancyAlertDialog-Android.
The source code is 100% Dart, and everything resides in the /lib folder.
💻 Installation #
In the dependencies: section of your pubspec.yaml, add the following line:
dependencies:
giff_dialog: <latest version>
copied to clipboard
❔ Usage #
Import this class #
import 'package:giff_dialog/giff_dialog.dart';
copied to clipboard
Network giff dialog #
onPressed: () {
showDialog(
context: context,builder: (_) => NetworkGiffDialog(
imageUrl:"https://raw.githubusercontent.com/Shashank02051997/
FancyGifDialog-Android/master/GIF's/gif14.gif",
title: Text('Granny Eating Chocolate',
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 22.0,
fontWeight: FontWeight.w600)),
description:Text('This is a granny eating chocolate dialog box.
This library helps you easily create fancy giff dialog',
textAlign: TextAlign.center,
),
entryAnimation: EntryAnimation.topLeft,
onOkButtonPressed: () {},
) );
}
copied to clipboard
Flare giff dialog #
onPressed: () {
showDialog(
context: context,builder: (_) => FlareGiffDialog(
flarePath: 'assets/example.flr',
flareAnimation: 'loading',
title: Text('Space Reloading',
style: TextStyle(
fontSize: 22.0, fontWeight: FontWeight.w600),
),
description: Text('This is a space reloading dialog box.
This library helps you easily create fancy flare dialog.',
textAlign: TextAlign.center,
style: TextStyle(),
),
entryAnimation: EntryAnimation.normal,
onOkButtonPressed: () {},
) );
}
copied to clipboard
Asset giff dialog #
onPressed: () {
showDialog(
context: context,builder: (_) => AssetGiffDialog(
imagePath: 'assets/example.gif',
title: Text('Men Wearing Jackets',
style: TextStyle(
fontSize: 22.0, fontWeight: FontWeight.w600),
),
description: Text('This is a men wearing jackets dialog box.
This library helps you easily create fancy giff dialog.',
textAlign: TextAlign.center,
style: TextStyle(),
),
entryAnimation: EntryAnimation.bottomRight,
onOkButtonPressed: () {},
) );
}
copied to clipboard
📃 License #
Copyright (c) 2021 Muntadher Al-Baghdadi

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
copied to clipboard
Getting Started #
For help getting started with Flutter, view our online documentation.
For help on editing package code, view the documentation.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.