Answers for "react-native-size-matters npm"

0

react-native-size-matters npm

import { scale, verticalScale, moderateScale } from 'react-native-size-matters';

const Component = props =>
    <View style={{
        width: scale(30),
        height: verticalScale(50),
          margin:moderateScale(10),
        padding: moderateScale(5)
    }}/>;
Posted by: Guest on January-17-2022

Code answers related to "TypeScript"

Browse Popular Code Answers by Language