Skip to content

Commit

Permalink
Modified README
Browse files Browse the repository at this point in the history
  • Loading branch information
andrius-k committed Jan 4, 2018
1 parent f73b4dc commit 47c6386
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Toast.ShowToast("This is a message", "Title");

// More configurations
Toast.MakeToast("This is a message")
.SetTitle("Title")
.SetTitle("Title")
.SetPosition(ToastPosition.Top) // Default is Bottom
.SetDuration(ToastDuration.Long) // Default is Regular
.SetShowShadow(false) // Default is true
Expand All @@ -54,8 +54,8 @@ Toast.GlobalAppearance.TitleFont = UIFont.SystemFontOfSize(16, UIFontWeight.Ligh
// Or you can replace entire objects
Toast.GlobalAppearance = new ToastAppearance
{
Color = UIColor.Blue,
CornerRadius = 4
Color = UIColor.Blue,
CornerRadius = 4
};
```

Expand Down

0 comments on commit 47c6386

Please sign in to comment.