React native target Samsung Galaxy S7

239 views Asked by At

My styling is broken on Samsung Galaxy S7 - I am using react-native-device-info is there a way I can target the Samsung S7 so I can conditionally set the styling?

When I try and use DeviceInfo.getDeviceId() and my emulator it gives me Ùnknown

import DeviceInfo from "react-native-device-info";
DeviceInfo.getDeviceId() //unknown

Any ideas?

1

There are 1 answers

0
Gabriel Menezes da Silva On BEST ANSWER

With the code below you will get the get the name of the cellphone, in your case, Samsumg Galaxy S7:

import DeviceInfo from "react-native-device-info";
DeviceInfo.getModel()

Please thumbs up if my answer is correct, waiting for your feedback :).