mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 14:43:25 +00:00
fix: use scrollview
This commit is contained in:
@@ -129,10 +129,14 @@ export default function SearchScreen() {
|
|||||||
</View>
|
</View>
|
||||||
</Animated.View>
|
</Animated.View>
|
||||||
) : (
|
) : (
|
||||||
<View style={{ flex: 1 }}>
|
<ScrollView
|
||||||
|
scrollEnabled={
|
||||||
|
bookmarks.length > 0 || watching.length > 0 ? true : false
|
||||||
|
}
|
||||||
|
>
|
||||||
<ItemListSection title="Bookmarks" items={bookmarks} />
|
<ItemListSection title="Bookmarks" items={bookmarks} />
|
||||||
<ItemListSection title="Continue Watching" items={watching} />
|
<ItemListSection title="Continue Watching" items={watching} />
|
||||||
</View>
|
</ScrollView>
|
||||||
)}
|
)}
|
||||||
</ScreenLayout>
|
</ScreenLayout>
|
||||||
</ScrollView>
|
</ScrollView>
|
||||||
|
Reference in New Issue
Block a user