2

I want to show notification in my app

I searched and found

http://zebble.net/docs/introduction-to-push-notifications

but I want to use local notification. how can I do it in Zebble?

Mohammad Joneidi
  • 197
  • 2
  • 12

1 Answers1

1

You can show a local notification like this:

await Device.LocalNotification.Show("Title", "The message body!");
ctyar
  • 931
  • 2
  • 10
  • 22