Skip to content

Commit

Permalink
no_Setting doc
Browse files Browse the repository at this point in the history
  • Loading branch information
bradmartin committed Jun 17, 2019
1 parent d9a7f4b commit fb6580c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ new Toasty('Some Message')

// or you can set the properties of the Toasty instance
const toasty = new Toasty('Somethign something...');
toasty.position = ToastPosition.CENTER;
toasty.position = ToastPosition.NO_SETTING;
toasty.duration = ToastDuration.SHORT;
toasty.textColor = '#fff';
toasty.backgroundColor = new Color('purple');
Expand Down Expand Up @@ -82,6 +82,7 @@ toast.show();
/**
* Set the background color of the toast.
* @param value [Color | string] - Color of the background.
* On Android this currently removes the default Toast rounded borders.
*/
setBackgroundColor(value: Color | string): Toasty;
```
Expand All @@ -95,6 +96,7 @@ export enum ToastDuration {
export enum ToastPosition {
'BOTTOM',
'CENTER',
'TOP'
'TOP',
'NO_SETTING'
}
```

0 comments on commit fb6580c

Please sign in to comment.