mirror of
https://github.com/Jellify-Music/App.git
synced 2026-04-29 06:59:30 -05:00
fixes
This commit is contained in:
@@ -24,6 +24,10 @@ export default function Albums({ navigation, route }: AlbumsProps) : React.JSX.E
|
||||
|
||||
return (
|
||||
<FlatList
|
||||
contentContainerStyle={{
|
||||
flexGrow: 1,
|
||||
alignItems: "center"
|
||||
}}
|
||||
contentInsetAdjustmentBehavior="automatic"
|
||||
numColumns={2}
|
||||
data={albums}
|
||||
@@ -42,7 +46,7 @@ export default function Albums({ navigation, route }: AlbumsProps) : React.JSX.E
|
||||
onPress={() => {
|
||||
navigation.navigate("Album", { album })
|
||||
}}
|
||||
size={"$12"}
|
||||
size={"$14"}
|
||||
/>
|
||||
}
|
||||
/>
|
||||
|
||||
@@ -30,6 +30,10 @@ export default function Artists({
|
||||
|
||||
return (
|
||||
<FlatList
|
||||
contentContainerStyle={{
|
||||
flexGrow: 1,
|
||||
alignItems: "center"
|
||||
}}
|
||||
contentInsetAdjustmentBehavior="automatic"
|
||||
numColumns={2}
|
||||
data={artists}
|
||||
@@ -46,7 +50,7 @@ export default function Artists({
|
||||
onPress={() => {
|
||||
navigation.navigate("Artist", { artist })
|
||||
}}
|
||||
width={width / 2.1}
|
||||
size={"$14"}
|
||||
/>
|
||||
}
|
||||
/>
|
||||
|
||||
@@ -29,6 +29,10 @@ export default function FavoritePlaylists({ navigation }: FavoritePlaylistsProps
|
||||
|
||||
return (
|
||||
<FlatList
|
||||
contentContainerStyle={{
|
||||
flexGrow: 1,
|
||||
alignItems: "center"
|
||||
}}
|
||||
contentInsetAdjustmentBehavior="automatic"
|
||||
numColumns={2}
|
||||
data={playlists}
|
||||
@@ -45,7 +49,7 @@ export default function FavoritePlaylists({ navigation }: FavoritePlaylistsProps
|
||||
onPress={() => {
|
||||
navigation.navigate("Playlist", { playlist })
|
||||
}}
|
||||
width={width / 2.1}
|
||||
size={"$14"}
|
||||
squared
|
||||
/>
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user