Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 693
shinzou Avatar asked Oct 14 '25 15:10

shinzou


2 Answers

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

ToastAndroid.show('A pikachu appeared nearby !', ToastAndroid.SHORT);
like image 111
Kraylog Avatar answered Oct 17 '25 04:10

Kraylog


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.

like image 38
nivesh shastri Avatar answered Oct 17 '25 05:10

nivesh shastri