0

I would like to use different styles depending on the device running an iOS application.

How could I detect which device is running the application?

Th. Ma.
  • 9,432
  • 5
  • 31
  • 46

1 Answers1

1

Device detection is enabled by react-native-device package available from npm

npm install react-native-device --save

See also: https://github.com/GertjanReynaert/react-native-device

Th. Ma.
  • 9,432
  • 5
  • 31
  • 46