How can i increase the fontsize of the items inside the FlatList ? #16157
Labels
Ran Commands
One of our bots successfully processed a command.
Resolution: For Stack Overflow
A question for Stack Overflow. Applying this label will cause issue to be closed.
Resolution: Locked
This issue was locked by the bot.
}
const styles = StyleSheet.create({
row_alternate: {
padding: 20,
backgroundColor: 'white',
fontSize: 90,
},
});
I tried,
<FlatList
data={this.props.properties}
renderItem={({ item }) => (
<ListItem style={{backgroundColor: 'blue', flex: 0.3}} onPress={()=>navigate('editProperty',{item})}
roundAvatar
title={
${item.agent_name}
}subtitle={
${item.address}, ${item.city}
}style={styles.row_alternate}
containerStyle={{ borderBottomWidth: 0, backgroundColor: 'blue' }}
/>
The text was updated successfully, but these errors were encountered: