всем привет
как можно поставить кнопку чтобы он был сразу после текста?
<View
style={{ flexDirection: 'row', alignSelf: 'center', marginTop: 10 }}
>
<Text
style={{ color: grey, fontFamily: openSansRegular, fontSize: 13 }}
>
Select party from list or
{' '}
</Text>
<TouchableOpacity onPress={this.onCreate}>
<Text
style={{
color: blue,
fontFamily: openSansRegular,
fontSize: 13,
}}
>
Add new party
</Text>
</TouchableOpacity>
</View>