Skip to content

Commit 8481c34

Browse files
getTextInput added
1 parent 751d338 commit 8481c34

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Provides you easily create various pop-up dialogs that you can use.
4242
setText(String text) // set fast-dialog TextView
4343
setHint(String hint) // set fast-dialog EditText's hint
4444
negativeText(String negative) // set negative button on fast-dialog and set button text
45-
possitiveText(String possitive) // set possitive button on fast-dialog and set button text
45+
positiveText(String positive) // set positive button on fast-dialog and set button text
4646
cancelable(boolean bool) // set cancelable to fast-dialog
4747
decimalEditText() // set EditText to decimalEditText
4848
changeColor(int colorButtonsAndTitle,int colorButtonsAndTitleText,int colorPrimaryText) // change fast-dialog colors
@@ -73,7 +73,7 @@ Provides you easily create various pop-up dialogs that you can use.
7373
w(this) // create warning dialog
7474
d(this) // create normal dialog
7575
p(this) // create progress dialog
76-
possitiveClickListener(PossitiveClick click) // set listener to possitive button
76+
positiveClickListener(PositiveClick click) // set listener to positive button
7777
negativeClickListener(NegativeClick click) // set listener to negative button
7878
show() //show dialog
7979
dismiss() //dismiss dialog
@@ -136,7 +136,7 @@ Provides you easily create various pop-up dialogs that you can use.
136136
```
137137
<img width="300px" src="images/input_number.gif" align="center"/>
138138

139-
> Information Dialog position bottom, slide bottom animation and listener possitive button
139+
> Information Dialog position bottom, slide bottom animation and listener positive button
140140
```java
141141
FastDialog dialog = new FastDialogBuilder(this,Type.INFO)
142142
.setTitleText("Information")
@@ -157,7 +157,7 @@ Provides you easily create various pop-up dialogs that you can use.
157157
```
158158
<img width="300px" src="images/bottom_dialog.gif" align="center"/>
159159

160-
> Warning Colored Dialog position top, slide top animation and listener possitive button
160+
> Warning Colored Dialog position top, slide top animation and listener positive button
161161
```java
162162
FastDialog dialog= new FastDialogBuilder(this,Type.DIALOG)
163163
.setTitleText("Warning")

0 commit comments

Comments
 (0)