SO i have this:
<InstantSearch searchClient={searchClient} indexName="myDB">
<SearchBox />
<ScrollView>
<Configure clickAnalytics />
<CustomHits />
<ConnectedPagination padding={5} />
</ScrollView>
</InstantSearch>
when I use this I can change the pages and go to the next page and go on like that (its very slow), but when I use this:
InstantSearch searchClient={searchClient} indexName="myDB">
<SearchBox />
<ScrollView>
<Configure clickAnalytics />
<CustomHits />
</ScrollView>
<View
style={{
flex: 1,
marginTop: -50,
top: 50,
flexDirection: "row",
justifyContent: "space-between",
marginBottom: 20,
borderTopWidth: 3,
borderTopColor: "#aaa",
}}
>
<ConnectedPagination padding={5} />
</View>
</InstantSearch>
whith this code, I cant change the pages and some times I get the warning on the picture, how can I get rid of this?
is something that I am doing wrong?