All Projects → DokkarRachidReda → Fancy Flutter Alert Dialog

DokkarRachidReda / Fancy Flutter Alert Dialog

Licence: mit
flutter package to show well designed alert dialog

Programming Languages

dart
5743 projects

Projects that are alternatives of or similar to Fancy Flutter Alert Dialog

whatisnewdialog
An Android library for displaying a dialog where it presents new features in the app.
Stars: ✭ 22 (-78.64%)
Mutual labels:  dialog, gif
TTFancyGifDialog-Android
TTFancyGifDialog makes your Android Dialog Fancy and more Beautiful. A library that makes normal Android Dialog to high level Dialog with many styling options and fully customizable. Make dialog from few lines of code.
Stars: ✭ 61 (-40.78%)
Mutual labels:  dialog, gif
Fancygifdialog Android
Make your native android Dialog Fancy and Gify. A library that takes the standard Android Dialog to the next level with a variety of styling options and Gif's. Style your dialog from code.
Stars: ✭ 409 (+297.09%)
Mutual labels:  gif, dialog
Flowabot
Modular Discord bot with fun features including twitch commands and advanced osu! commands. 🌷
Stars: ✭ 86 (-16.5%)
Mutual labels:  gif
Launchy
Launchy: An Accessible Modal Window
Stars: ✭ 89 (-13.59%)
Mutual labels:  dialog
Atom Terminal Panel
Advanced terminal interface for Atom editor
Stars: ✭ 95 (-7.77%)
Mutual labels:  fancy
Gif Frames
🖼 Extract frames from an animated GIF with pure JS
Stars: ✭ 100 (-2.91%)
Mutual labels:  gif
Swiftgif
[UNMAINTAINED] 🌠 A small UIImage extension with gif support
Stars: ✭ 1,255 (+1118.45%)
Mutual labels:  gif
Customalertviewdialogue
Custom AlertView Dialogue is the world's most advanced alert view library. Custom AlertView Dialogue includes simple message popups, confirmation alerts, selector popups, action sheet bottom menus, and input/feedback contact forms.
Stars: ✭ 100 (-2.91%)
Mutual labels:  dialog
Windowshowdemo
Android 弹窗案例总结(仿淘宝弹窗 咸鱼菜单 筛选列表)
Stars: ✭ 95 (-7.77%)
Mutual labels:  dialog
Shellpic
ASCII-art is so 2013
Stars: ✭ 94 (-8.74%)
Mutual labels:  gif
Node Sorry
生成表情gif
Stars: ✭ 90 (-12.62%)
Mutual labels:  gif
Vdx
🎞 An intuitive CLI for processing video, powered by FFmpeg
Stars: ✭ 1,356 (+1216.5%)
Mutual labels:  gif
Core Components
Accessible and lightweight Javascript components
Stars: ✭ 85 (-17.48%)
Mutual labels:  dialog
Ffmpeg Gif Script For Bash
Turn your videos into palette-mapped gifs with this easy script
Stars: ✭ 100 (-2.91%)
Mutual labels:  gif
Gifcompressor
An Android tool to compresses your GIFs into lightweight MP4 video using fast, hardware-accelerated encoders. Supports cropping, rotation, GIF concatenation and much more.
Stars: ✭ 85 (-17.48%)
Mutual labels:  gif
Gifserver
A server for transcoding gif to video on the fly
Stars: ✭ 100 (-2.91%)
Mutual labels:  gif
Kgif
Tool for creating gif file from capturing active window.
Stars: ✭ 94 (-8.74%)
Mutual labels:  gif
Flipprogressdialog
Airbnb like ProgressDialog with Image Flip Animation.🛌🍞✨
Stars: ✭ 92 (-10.68%)
Mutual labels:  dialog
Simpledialogfragments
A collection of easy to use and extendable DialogFragment's for Android
Stars: ✭ 94 (-8.74%)
Mutual labels:  dialog

Fancy Flutter Alert Dialog

Hits

Build Status Coverage Status GitHub release (latest by date)

GitHub stars Twitter Follow

Pure Dart and Flutter package for Android,IOS and Web

A flutter Package to show custom alert Dialog,you can choose between two themes 'Fancy' and 'Flat'

The package is available in fancy_dialog

Usage

Import the Package

add this dependencies to your app dependencies: fancy_dialog: ^1.0.4

Use the Package

add this import statement import 'package:fancy_dialog/fancy_dialog.dart';

to show a Basic Dialog

showDialog(
              context: context,
              builder: (BuildContext context) => FancyDialog(
                title: "Fancy Gif Dialog",
                descreption: "This is descreption for fancy gif,you can load any image or gif to be displayed :), and you can choose between two themes Fancy and Flat",
                )
            ) 
          

the title and descreption are required and the rest of the parameters are :

  • okFun : the function to be called when the user press Ok button (positive button)

  • cancelFun : the function to be called when the user press cancel button (negative button)

  • cancelColor : the color of the negative button, by default it's Colors.grey

  • oklColor : the color of the positive button, by default it's Colors.pink

  • ok : the text of the positive button, by default it's 'OK !'

  • cancel : the text of the negative button, by default it's 'cancel'

  • animationType : The type of the animation, there are 4 types,which are :

    • FancyAnimation.LEFT_RIGHT the default one
    • FancyAnimation.RIGHT_LEFT
    • FancyAnimation.TOP_BOTTOM
    • FancyAnimation.BOTTOM_TOP
  • gifpath : the path for the image or the GIF to be displayed,or you can choose between 6 Gifs the package provides :

    • FancyGif.MOVE_FORWARD the default one
    • FancyGif.CHECK_MAIL
    • FancyGif.FUNNY_MAN
    • FancyGif.PLAY_MEDIA
    • FancyGif.SUBMIT
    • FancyGif.SHARE
  • theme : Fancy or Flat

    • FancyTheme.FANCY
    • FancyTheme.FLAT

The dialog will be dissmised by default when the user click Ok or cancel, DON'T ADD Navigator.of(context).pop() to okFun or cancelFun

ScreenShots

Contribution

Feel free to contribute,report a bug or to suggest a feature

Thank you :)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].