i am working on a react-native/expo app. yesterday i got to the styling stage and learned that
Dimensions.get('window').width
returns half of the real width of my devices (one android, one iPad), but the real width of an emulated android device. it looks as the physical devices run the app in some half/half resolution mode.
needles to say that it completely destroys my idea for styling the app as i use dynamic style building with EStyleSheet (react-native-extended-stylesheet), which depends on the values got by Dimensions and also things like maxWidth don't make a lot of sense, do they?
is there any method of forcing react-native/expo app to run in "full resolution"?
thanks!