“Flatlist React Native horyzontal” Kod odpowiedzi

Flatlist horyzontal

horizontal={true}
MAKSTYLE119

pozioma lista płaskiej

import BeautifulHorizontalList from "react-native-beautiful-horizontal-list";
Itchy Ibex

Flatlist React Native horyzontal

<FlatList
    data={this.state.newsFeed}
    refreshing={this.state.refreshing}
    horizontal={this.state.isHorizontal}
    ref={ref => { this.newsFeedListRef = ref; }}
    renderItem={this.renderNewsFeedRow.bind(this)}
    keyExtractor={(item, index) => `feed_${index}`}
    onRefresh={this.__handleNewsFeedOnRefresh.bind(this)}
    //renderScrollComponent={this.renderScrollComponent.bind(this)}
    ListHeaderComponent={this.renderListHeaderComponent.bind(this)}
    getItemLayout={(data, index) => ({ index, length: ITEM_HEIGHT, offset: (ITEM_HEIGHT * index) })} />
Troubled Tortoise

Odpowiedzi podobne do “Flatlist React Native horyzontal”

Pytania podobne do “Flatlist React Native horyzontal”

Więcej pokrewnych odpowiedzi na “Flatlist React Native horyzontal” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu