From 5568c612cedef3fdf8bcc578301d6dc74ee12d8b Mon Sep 17 00:00:00 2001 From: nathan Date: Sat, 23 Jun 2018 09:22:42 +0200 Subject: [PATCH] Added basic example to readme --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index c01a3ca..bb47d9f 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,17 @@ Cross platform notification popups, similar to "Growl" on OSX, "Toasts" on Windo This small library can display notifications on any screen, in any corner. + +Basic usage +--------- +```java +Notify.create() + .title("Title Text") + .text("Hello World!") + .useDarkStyle() + .showWarning(); +``` + Primary Features: 1. Can specify which screen to use for notification.