fix artist stacks

This commit is contained in:
Violet Caulfield
2025-04-16 14:34:19 -05:00
parent 9c6805956a
commit 1caf156476
3 changed files with 4 additions and 9 deletions

View File

@@ -30,8 +30,7 @@ export function Discover(): React.JSX.Element {
component={ArtistScreen}
options={({ route }) => ({
title: route.params.artist.Name ?? 'Unknown Artist',
headerLargeTitle: true,
headerLargeTitleStyle: {
headerTitleStyle: {
fontFamily: 'Aileron-Bold',
},
})}

View File

@@ -35,17 +35,13 @@ export default function LibraryStack(): React.JSX.Element {
options={({ route }) => ({
title: route.params.artist.Name ?? 'Unknown Artist',
headerLargeTitle: true,
headerLargeTitleStyle: {
headerTitleStyle: {
fontFamily: 'Aileron-Bold',
},
})}
/>
<Stack.Screen
name='Artists'
component={ArtistsScreen}
options={({ route }) => ({ g })}
/>
<Stack.Screen name='Artists' component={ArtistsScreen} options={({ route }) => ({})} />
<Stack.Screen
name='Album'

View File

@@ -16,7 +16,7 @@ export default function SearchStack(): React.JSX.Element {
component={SearchScreen}
options={{
headerLargeTitle: true,
headerLargeTitleStyle: {
headerTitleStyle: {
fontFamily: 'Aileron-Bold',
},
}}