Skip to content

Commit 4f4c922

Browse files
readme fixes
1 parent 5bb8351 commit 4f4c922

File tree

5 files changed

+8
-18
lines changed

5 files changed

+8
-18
lines changed

README.md

Lines changed: 8 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Provides you easily create various pop-up dialogs that you can use.
55

66
[![](https://jitpack.io/v/eneskarpuzoglu/android-fast-dialog.svg)](https://jitpack.io/#eneskarpuzoglu/android-fast-dialog)
77

8-
##Installation
8+
## Installation
99

1010
### Step 1. Add the JitPack repository to your build file
1111

@@ -19,15 +19,15 @@ Provides you easily create various pop-up dialogs that you can use.
1919
}
2020
}
2121
```
22-
###Step 2. Add the dependency
22+
### Step 2. Add the dependency
2323

2424
```gradle
2525
dependencies {
2626
implementation 'com.github.eneskarpuzoglu:android-fast-dialog:($LastVersion)'
2727
}
2828
```
2929

30-
##How to use
30+
## How to use
3131

3232
> Create `FastDialog` use to `FastDialogBuilder`
3333
```java
@@ -66,24 +66,14 @@ Provides you easily create various pop-up dialogs that you can use.
6666
create() // create fast-dialog
6767
```
6868

69-
##Examples
69+
## Examples
7070
> Simple Progress Dialog
7171
```java
7272
FastDialog dialog = new FastDialogBuilder(this)
7373
.progressDialog("Please Wait!").create();
7474
dialog.show();
7575
```
76-
![GIF](https://imgur.com/a/yVET4OW)
77-
78-
> Simple Warning Dialog
79-
```java
80-
FastDialog dialog = new FastDialogBuilder(this)
81-
.setText("Warning")
82-
.withIcon()
83-
.create();
84-
dialog.show();
85-
```
86-
[![INSERT YOUR GRAPHIC HERE](https://imgur.com/a/rQ2h5HB)]()
76+
![Fast Progress Dialog](images/progress.gif)
8777

8878
> Warning Dialog
8979
```java
@@ -93,7 +83,7 @@ Provides you easily create various pop-up dialogs that you can use.
9383
.create();
9484
dialog.show();
9585
```
96-
[![INSERT YOUR GRAPHIC HERE](https://imgur.com/a/rQ2h5HB)]()
86+
![Fast Warning Dialog](images/warning.png)
9787

9888
> Warning Dialog with EditText
9989
```java
@@ -106,7 +96,7 @@ Provides you easily create various pop-up dialogs that you can use.
10696
.create();
10797
dialog.show();
10898
```
109-
[![INSERT YOUR GRAPHIC HERE](https://imgur.com/a/LgJEyS0)]()
99+
![Fast Warning EditText Dialog](images/warning2.png)
110100

111101
> Warning Dialog position bottom, slide bottom animation and listener possitive button
112102
```java
@@ -128,7 +118,7 @@ Provides you easily create various pop-up dialogs that you can use.
128118
.create();
129119
dialog.show();
130120
```
131-
[![INSERT YOUR GRAPHIC HERE](https://imgur.com/a/9tj2ToE)]()
121+
![Fast Bottom Dialog](images/bottom.gif)
132122

133123
## License
134124

images/bottom_dialog.gif

1.9 MB
Loading

images/progress.gif

591 KB
Loading

images/warning.png

57 KB
Loading

images/warning2.png

55.8 KB
Loading

0 commit comments

Comments
 (0)