1.0.2 • Published 3 months ago
react-native-rem v1.0.2
React Native Rem
It's a very simple package that helps a lot to make the application responsive. To use, simple multiply all project sizes with the "rem".
Basic usage
import { Stylesheet } from 'react-native';
import rem from 'react-native-rem';
const style = Stylesheet.create({
container: {
width: 100 * rem,
height: 100 * rem,
}
});
export default style;