“Flatlist React Native Horizontal” Código de respuesta

lista plana horizontal

horizontal={true}
MAKSTYLE119

lista plana horizontal

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

Flatlist React Native Horizontal

<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

Respuestas similares a “Flatlist React Native Horizontal”

Preguntas similares a “Flatlist React Native Horizontal”

Más respuestas relacionadas con “Flatlist React Native Horizontal” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código