This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html{ | |
font-size: calc(1vw + 1em)/2; | |
} | |
.some-random-input{ | |
font-size: 2em; /*Twice the size defined above*/ | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, {useState, useEffect} from 'react'; | |
import { | |
Image, | |
View, | |
StyleSheet, | |
} from 'react-native'; | |
import RNFetchBlob from 'rn-fetch-blob'; | |
import isEmpty from '../../utils/is-empty'; | |
import shorthash from 'shorthash'; |