在屏幕截图中显示了如何将3点图标放置在右上角的中间位置。
使用https://react-native-training.github.io/react-native-elements/docs/listitem.html
示例代码
<ListItem
containerStyle={styles.containerStyle}
title={this.getTitleView(data)}
subtitle={this.getAddressView(data)}
leftElement={this.getAvatarView(data)}
rightElement={<Icon type="material" color="#C8C8C8" name="more-vert" />}
/>
基本上我希望将rightElement
放在顶部而不是居中