Resizing base64 to percentage of original in react-native
I am rendering some base64 images in my react-native app, and it is working. However, right now it only seems to work when I assign a fixed height and width: <View> <Image source={{ uri: logoStr, }} style={styles.logo} /> </View> const styles = StyleSheet.create({ // other styles logo: { width: 270, height: 320, marginTop: ‘10%’, },… Read More Resizing base64 to percentage of original in react-native