It seems as though I am having problems with creating a display: inline styling equivalent with flexbox. So far I have achieved the following (where the red and blue lines are g
This works for me:
import {View, Text} from 'react-native'; Hello const styles = StyleSheet.create({ container: { flexDirection: 'row', alignSelf: 'flex-start' } });