Is there a way to center align the items in a ListView without using another View wrapping the ListView? Currently, all the items are left aligned.
ListView Code Snippet
<ListView
dataSource={this.state.dataSource}
renderRow={this.renderItem}
style={styles.listView}
/>
Styling for ListView
listView: {
paddingTop: 20,
paddingBottom: 20,
}
If anyone knows how to achieve this alignment, I would appreciate your help. Thank you!