react-native-listview Questions
3
Solved
I have 3 ListView components inside a single ScrollView component like this:
<ScrollView>
<Header />
<ListView onEndReached={() => alert('load more 1')}/>
<ListView onEn...
Compurgation asked 11/8, 2016 at 4:13
1
I want to horizontally scroll some part of a ListView in React Native.
How can I fix the position of first column and make other column horizontally scrollable?
Caprification asked 6/7, 2016 at 20:30
2
Solved
I am using django as the backend, and react-native for the app. When the app is opened inside the react-native app, on componentDidMount(), the method will will request through the url to the djang...
Schwartz asked 7/8, 2016 at 17:17
1
Solved
I have 113 records in my application.react native listView is taking more than 3 seconds to render all the rows. how can i make it efficient so time consumption can be minimum and app experience ca...
Candlestick asked 1/8, 2016 at 6:42
2
Solved
We can create a datasource for ListView like this
var ds = new ListView.DataSource({rowHasChanged: (r1, r2) => r1 !== r2});
var dataSource = ds.cloneWithRows(['row 1', 'row 2']), };
But if I...
Mathew asked 30/3, 2015 at 16:20
2
Solved
I have buttons displayed on the top of the screen (used react-native-scrollable-tab-view). Underneath the buttons, I have ListView with section header on it.
Is there a way to get the header to ...
Birdsong asked 26/6, 2015 at 6:32
© 2022 - 2024 — McMap. All rights reserved.