remove non-working cast button for now

This commit is contained in:
austinried 2021-09-04 14:45:08 +09:00
parent 3053e2b5c9
commit 2097a9f7fd

View File

@ -336,9 +336,9 @@ const PlayerControls = () => {
</View> </View>
</View> </View>
<View style={controlsStyles.bottom}> <View style={controlsStyles.bottom}>
<PressableOpacity onPress={undefined} disabled={true} hitSlop={16}> {/* <PressableOpacity onPress={undefined} disabled={true} hitSlop={16}>
<IconMatCom name="cast-audio" size={20} color="white" /> <IconMatCom name="cast-audio" size={20} color="white" />
</PressableOpacity> </PressableOpacity> */}
<PressableOpacity onPress={() => navigation.navigate('queue')} disabled={disabled} hitSlop={16}> <PressableOpacity onPress={() => navigation.navigate('queue')} disabled={disabled} hitSlop={16}>
<IconMatCom name="playlist-play" size={24} color="white" /> <IconMatCom name="playlist-play" size={24} color="white" />
</PressableOpacity> </PressableOpacity>
@ -361,7 +361,7 @@ const controlsStyles = StyleSheet.create({
bottom: { bottom: {
flexDirection: 'row', flexDirection: 'row',
alignItems: 'center', alignItems: 'center',
justifyContent: 'space-between', justifyContent: 'flex-end',
paddingTop: 10, paddingTop: 10,
paddingBottom: 40, paddingBottom: 40,
}, },