0 purchases
easy dialog
Easy Dialog package helps you easily create basic or custom dialogs.
For extended documentation visit project pub package.
Star ⭐ this repo if you like our project. We would love your support.
💾 Installation #
In the dependencies: section of your pubspec.yaml, add the following line:
dependencies:
easy_dialog: <latest version>
copied to clipboard
📦 Usage #
Import this class #
import 'package:easy_dialog/easy_dialog.dart';
copied to clipboard
Basic structure #
EasyDialog(
title: Text("Basic Easy Dialog Title"),
description: Text("This is a basic dialog")).show(context);
copied to clipboard
🎯 Examples #
Let start creating simple but beautiful dialogs.
Here you have some basic examples of what can you build and let your creativity fly.
🎨 Customization and Attributes #
All customizable attributes for easy_dialog
Attribute Name
Example Value
Description
topImage
AssetImage("assets/topImage.png")
Top image for decoration purpose with rounded top corners
title
Text("Alert")
Dialog title, located under topImage if exists
tittlePadding
EdgeInsets.only(left: 8.0,right: 8.0)
Title padding
description
Text("Connection error")
Dialog description, located between title and contentList
descriptionPadding
EdgeInsets.only(left: 8.0,right: 8.0)
Description padding
contentList
[
Text("This is an extra text line"),
FlatButton(onPressed: () {},
child: Text("Okay"),),
]
Optional widget list, located in order before description
contentPadding
EdgeInsets.all(12.0)
Content padding. It wraps all widgets including title and description
height
200
Dialog height
width
250
Dialog width
cornerRadius
15.0
Dialog corner radius
fogOpacity
0.5
Fog opacity, sets the black fog opacity behind our dialog from 0 to 1
closeButton
false
Close button enable/disable
🧱 How to Contribute #
Fork it
Create your feature branch (git checkout -b my-new-feature)
Commit your changes (git commit -am 'Add some feature')
Push to the branch (git push origin my-new-feature)
Create new Pull Request
📃 MIT License #
Copyright (c) 2019 ricardonior29
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.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.