correct small errors
continuous-integration/drone/push Build is passing Details

pull/19/head
Emre KARTAL 1 year ago
parent 10bd4b892a
commit 85b47bf961

@ -118,7 +118,7 @@ export default function HomeNavigation() {
return (
<BlurView
intensity={30}
style={{ flex: 1, backgroundColor: isDark ? 'rgba(20, 20, 20, 0.9)' : 'rgba(255, 255, 255, 0.7)' }}
style={{ flex: 1, backgroundColor: isDark ? 'rgba(30, 30, 30, 0.9)' : 'rgba(255, 255, 255, 0.7)' }}
/>
);
};

@ -21,12 +21,10 @@
"expo-auth-session": "~3.8.0",
"expo-av": "~13.0.3",
"expo-blur": "~12.0.1",
"expo-cli": "^6.3.10",
"expo-haptics": "~12.0.1",
"expo-image-picker": "~14.0.2",
"expo-linear-gradient": "~12.0.1",
"expo-location": "~15.0.1",
"expo-random": "~13.0.0",
"expo-secure-store": "~12.0.0",
"expo-splash-screen": "~0.17.5",
"react": "18.1.0",
@ -39,7 +37,6 @@
"react-native-safe-area-context": "4.4.1",
"react-native-screens": "~3.18.0",
"react-native-svg": "13.4.0",
"react-native-vector-icons": "^9.2.0",
"react-navigation-shared-element": "^3.1.3",
"react-redux": "^8.0.5",
"redux": "^4.2.1"

@ -295,7 +295,7 @@ export default function DetailScreen({ route }) {
/>
</BlurView>
</View>
<SafeAreaView style={styles.mainSafeArea}>
<View style={styles.mainSafeArea}>
<ScrollView>
<View style={styles.card}>
<TouchableOpacity onPress={() => { Linking.openURL(item.url); }}>
@ -368,7 +368,7 @@ export default function DetailScreen({ route }) {
/>}
</View>
</ScrollView>
</SafeAreaView>
</View>
</View>
);
};

@ -89,6 +89,7 @@ export default function RegisterScreen() {
encodeURIComponent(redirectUri)
})
const {
access_token: access_token,
refresh_token: refresh_token,
} = result.params
setSpotifyToken(refresh_token)

@ -86,10 +86,9 @@ export default function SettingScreen() {
mainSafeArea: {
flex: 1,
backgroundColor: style.body,
paddingTop: insets.top
},
container: {
marginTop: 30,
marginTop: insets.top + 30,
marginHorizontal: normalize(25),
paddingBottom: normalize(400),
flex: 1,

Loading…
Cancel
Save