Change screens depending on the OS with React Native

95 views Asked by At

I'm developing an app the uses Health Kit and Google fit, I have a screen that asks for the user's permission to track the data, how can I make the system differ from Android and iOS to send the user to the correct page?

1

There are 1 answers

0
Apps Maven On

You can use property of Platform.OS and do your changes according to that. For example

color:Platform.OS === 'ios'? 'red':'yellow'.