shinzou
shinzou

Reputation: 6232

What is the notification that pops at the bottom on Android called and how do you add it on React Native?

I mean this notification that many apps use:

enter image description here

The "Your download was resumed" box.

What is it called and how do you add it on RN?

I tried to look for notifications and alerts but that didn't bring it up.

Upvotes: 4

Views: 2969

Answers (2)

nivesh shastri
nivesh shastri

Reputation: 440

Hello Kuhaku,

First thing is that Your download was resumed is not notification its a Toast in android.

If you want to display message like above screen in native Go through with this link

Hope this will help you.

Upvotes: 1

Kraylog
Kraylog

Reputation: 7563

It's called a 'Toast' and you can use ToastAndroid to create it on Android.

ToastAndroid.show('A pikachu appeared nearby !', ToastAndroid.SHORT);

Upvotes: 6

Related Questions