All Projects → xsahil03x → Giffy_dialog

xsahil03x / Giffy_dialog

Licence: mit
A Flutter package for a quick and handy giffy dialog.

Programming Languages

dart
5743 projects

Projects that are alternatives of or similar to Giffy dialog

Noty
A simple library for creating animated warnings/dialogs/alerts for Android.
Stars: ✭ 136 (-73.69%)
Mutual labels:  material, dialog
Singledateandtimepicker
You can now select a date and a time with only one widget !
Stars: ✭ 921 (+78.14%)
Mutual labels:  material, dialog
Dialogsheet
An Android library to create fully material designed bottom dialogs similar to the Android Pay app.
Stars: ✭ 236 (-54.35%)
Mutual labels:  material, dialog
React Native Material Dialog
Material design dialogs for React Native 💬
Stars: ✭ 135 (-73.89%)
Mutual labels:  material, dialog
Md Date Time Picker
An implementation of Material Design Picker components in vanilla CSS, JS, and HTML
Stars: ✭ 272 (-47.39%)
Mutual labels:  material, dialog
Seq2seqchatbots
A wrapper around tensor2tensor to flexibly train, interact, and generate data for neural chatbots.
Stars: ✭ 466 (-9.86%)
Mutual labels:  dialog
Material Axure Library
An Axure widget library based on Google Material Design.
Stars: ✭ 490 (-5.22%)
Mutual labels:  material
Typecho Theme Material
Material Design theme for typecho.
Stars: ✭ 464 (-10.25%)
Mutual labels:  material
Sppermissions
Ask permissions with ready-use interface. You can check status permission and if it has been requested before. Support SwiftUI.
Stars: ✭ 4,701 (+809.28%)
Mutual labels:  dialog
Unity Frosted Glass
❄️ Test of a frosted glass material in Unity.
Stars: ✭ 506 (-2.13%)
Mutual labels:  material
Tutoshowcase
A simple and Elegant Showcase view for Android
Stars: ✭ 499 (-3.48%)
Mutual labels:  material
Indicatordialog
a dialog with arrow indicator in the location where you want
Stars: ✭ 485 (-6.19%)
Mutual labels:  dialog
Alertdialogpro
[Deprecated] This project can make it easy to theme and custom Android's dialog. Also provides Holo and Material themes for old devices.
Stars: ✭ 466 (-9.86%)
Mutual labels:  dialog
Palenight.vim
Soothing color scheme for your favorite [best] text editor
Stars: ✭ 492 (-4.84%)
Mutual labels:  material
Material Components Ios
[In maintenance mode] Modular and customizable Material Design UI components for iOS
Stars: ✭ 4,484 (+767.31%)
Mutual labels:  material
Search Dialog
An easy to use, yet very customizable search dialog
Stars: ✭ 503 (-2.71%)
Mutual labels:  dialog
React Cool Portal
😎 🍒 React hook for Portals, which renders modals, dropdowns, tooltips etc. to <body> or else.
Stars: ✭ 458 (-11.41%)
Mutual labels:  dialog
Mui
Lightweight CSS framework
Stars: ✭ 4,462 (+763.06%)
Mutual labels:  material
Xtoast
Android 悬浮窗框架,好用不解释
Stars: ✭ 493 (-4.64%)
Mutual labels:  dialog
Ngx Starter Kit
🅰️ Angular 🚀 NestJS 🐒 Starter Kit
Stars: ✭ 479 (-7.35%)
Mutual labels:  material

👏 Giffy Dialogs

Say Thanks! Twitter

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.

Show some ❤️ and star the repo to support the project

GitHub stars GitHub forks GitHub watchers GitHub followers
Twitter Follow

Open Source Love License Build Status CodeCov

💻 Installation

In the dependencies: section of your pubspec.yaml, add the following line:

Version

dependencies:
  giffy_dialog: <latest version>

❔ Usage

Import this class

import 'package:giffy_dialog/giffy_dialog.dart';

Network giffy dialog

Network
onPressed: () {
  showDialog(
  context: context,builder: (_) => NetworkGiffyDialog(
    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 giffy dialog',
          textAlign: TextAlign.center,
        ),
    entryAnimation: EntryAnimation.BOTTOM_TOP,
    onOkButtonPressed: () {},
  ) );
}

Flare giffy dialog

Flare
onPressed: () {
  showDialog(
  context: context,builder: (_) => FlareGiffyDialog(
    flarePath: 'assets/space_demo.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.DEFAULT,
    onOkButtonPressed: () {},
  ) );
}

Asset giffy dialog

Asset
onPressed: () {
  showDialog(
  context: context,builder: (_) => AssetGiffyDialog(
    imagePath: 'assets/men_wearing_jacket.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 giffy dialog.',
          textAlign: TextAlign.center,
          style: TextStyle(),
        ),
    entryAnimation: EntryAnimation.RIGHT_LEFT,
    onOkButtonPressed: () {},
  ) );
}

👍 How to Contribute

If you are interested in contributing to the project, please read Contributing guide and let us know!

Contributors ✨

Thanks goes to these wonderful people (emoji key):


ArtemKolichenkov

📖 🤔

Alex Fierro

💻

Kasidech C.

💻

Jai Sachdeva

💬

Tarekk Mohamed Abdalla

💻

madhukesh_048

⚠️

dpedrinha

💻

Nate

💻 💡

Alex

💻

jritchie

💻

Saad Bin Shahid

💻

This project follows the all-contributors specification. Contributions of any kind welcome!

📃 License

Copyright (c) 2019 Sahil Kumar

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.

Getting Started

For help getting started with Flutter, view our online documentation.

For help on editing package code, view the documentation.

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].