React Native Open settings through Linking.openURL in IOS

前端 未结 6 2259
失恋的感觉
失恋的感觉 2021-02-05 20:32

I want to open ios setting app from my app. the settings destination is [ settings => notification => myapp ]. to turn on & turn off push notification.

There are so

6条回答
  •  轮回少年
    2021-02-05 20:47

    You can deep-link referencing the settings's index like so:

    Linking.openURL('app-settings:')
    

    Above method only for IOS

提交回复
热议问题