Resizing base64 to percentage of original in react-native – 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…