Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialJustin Rich
19,556 PointsReact Native size units of measurement
In react native when setting sizes (width, fontSize, etc) are we using pixels or another unit of measurement (%, em, rm)? Additionally, what sizing units are permitted?
1 Answer
Seth Kroger
56,413 Pointshttps://facebook.github.io/react-native/docs/height-and-width.html:
"All dimensions in React Native are unitless, and represent density-independent pixels." While it doesn't say so explicitly, it seems equivalent to Android's dp
measure.
[changed category to JS because that's the category of the React Native course.]