fix: Ensure proper spacing in downloads screen
This commit is contained in:
@@ -73,7 +73,7 @@ function Downloads() {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
const ListHeaderComponent = useMemo(() => (
|
const ListHeaderComponent = useMemo(() => (
|
||||||
<View style={[{ paddingHorizontal: 20, paddingBottom: 12, borderBottomWidth: 0.5 }, defaultStyles.border]}>
|
<View style={[{ paddingHorizontal: 20, paddingBottom: 12, paddingTop: 12, borderBottomWidth: 0.5 }, defaultStyles.border]}>
|
||||||
<View style={{ flexDirection: 'row', alignItems: 'center' }}>
|
<View style={{ flexDirection: 'row', alignItems: 'center' }}>
|
||||||
<Text
|
<Text
|
||||||
style={[
|
style={[
|
||||||
@@ -154,7 +154,7 @@ function Downloads() {
|
|||||||
<FlatList
|
<FlatList
|
||||||
data={ids}
|
data={ids}
|
||||||
style={{ flex: 1, paddingTop: 12 }}
|
style={{ flex: 1, paddingTop: 12 }}
|
||||||
contentContainerStyle={{ flexGrow: 1 }}
|
contentContainerStyle={{ flexGrow: 1, paddingBottom: 24 }}
|
||||||
renderItem={renderItem}
|
renderItem={renderItem}
|
||||||
/>
|
/>
|
||||||
</SafeAreaView>
|
</SafeAreaView>
|
||||||
|
|||||||
Reference in New Issue
Block a user