Я отображаю список кнопок Material Kit (используя SectionList ) и хочу иметь возможность отображать их ключ (т. Е. Их индекс) при нажатии - однако я борется с тем, чтобы заставить его работать кнопкой МК.
Любая помощь будет очень признательна. Спасибо за тонну!
Конструктор кнопок с onPress:
AllConnectionsItemButton = MKButton.flatButton()
.withOnPress( (key) => alert(key))
.build()
SectionList:
<SectionList
renderItem={({item, index, section}) => (
<AllConnectionsItemButton key={index}>
<Text>{item.name}</Text>
</AllConnectionsItemButton>
)}
renderSectionHeader={({section: {title}}) => (
<View>
<Text>{title}</Text>
</View>
)}
sections={this.state.myList}
keyExtractor={(item, index) => item + index}
/>