How to add icon (image, logo..) to the status bar

前端 未结 3 984
一生所求
一生所求 2021-02-19 01:52

I have noticed that there is no props for the StatusBar component (React Native) to include an icon or logo of any kind as in this documentation: https://facebook.github.io/rea

3条回答
  •  礼貌的吻别
    2021-02-19 02:11

    For iOS it's not possible to add any custom icons in the status bar, apple doesn't allow it.

    For Android you should use Notification and Notification Manager. Just write a native module in java who do this when your app is launching. React Native allow you to call Native Module written in Java, take a look here https://facebook.github.io/react-native/docs/native-modules-android.html

    You should also read this for Notification How to show an icon in the status bar when application is running, including in the background?

提交回复
热议问题