change delete button to lond press only

This commit is contained in:
moist-webDev 2023-06-21 21:53:49 -04:00
parent 13d995edd2
commit 112e4127c1
3 changed files with 22 additions and 6 deletions

View File

@ -244,6 +244,12 @@ const style = (theme:any) => {
alignItems: 'center', alignItems: 'center',
justifyContent: 'center', justifyContent: 'center',
}, },
delete: {
color: 'red',
textAlign: 'center',
marginTop: 10,
},
}); });
} }
@ -457,8 +463,8 @@ function EditMovieModal({editMovie, setEdditMovie, update, theme, remove}:any){
value={editMovie.notes} value={editMovie.notes}
/> />
</View> </View>
<View style={{...st.row, width: '90%', marginLeft: 20, justifyContent: "flex-start"}}> <View style={{...st.row, width: '90%', marginLeft: 20, justifyContent: "center"}}>
<Button title="delete" onPress={()=>remove(editMovie.id)} theme={theme} style={{backgroundColor: theme.danger, paddingHorizontal: 25, margin: 0}}/> <Text style={st.delete} onLongPress={()=>remove(editMovie.id)}>long press to delete</Text>
</View> </View>
</View> </View>
</View> </View>

View File

@ -266,6 +266,11 @@ const style = (theme:any) => {
paddingHorizontal: 10, paddingHorizontal: 10,
padding: 5, padding: 5,
}, },
delete: {
color: 'red',
textAlign: 'center',
marginTop: 10,
},
}); });
} }
@ -520,8 +525,8 @@ function EditshowModal({editOther, setEditOther, update, theme, remove, selCat}:
value={editOther.notes} value={editOther.notes}
/> />
</View> </View>
<View style={{...st.row, width: '90%', marginLeft: 20, justifyContent: "flex-start"}}> <View style={{...st.row, width: '90%', marginLeft: 20, justifyContent: "center"}}>
<Button title="delete" onPress={()=>remove(editOther.id)} theme={theme} style={{backgroundColor: theme.danger, paddingHorizontal: 25, margin: 0,}}/> <Text style={st.delete} onLongPress={()=>remove(editor.id)}>long press to delete</Text>
</View> </View>
</View> </View>
</View> </View>

View File

@ -265,6 +265,11 @@ const style = (theme:any) => {
paddingHorizontal: 10, paddingHorizontal: 10,
padding: 5, padding: 5,
}, },
delete: {
color: 'red',
textAlign: 'center',
marginTop: 10,
},
}); });
} }
@ -517,8 +522,8 @@ function EditshowModal({editShow, setEditShow, update, theme, remove}:any){
value={editShow.notes} value={editShow.notes}
/> />
</View> </View>
<View style={{...st.row, width: '90%', marginLeft: 20, justifyContent: "flex-start"}}> <View style={{...st.row, width: '90%', marginLeft: 20, justifyContent: "center"}}>
<Button title="delete" onPress={()=>remove(editShow.id)} theme={theme} style={{backgroundColor: theme.danger, paddingHorizontal: 25, margin: 0,}}/> <Text style={st.delete} onLongPress={()=>remove(editShow.id)}>long press to delete</Text>
</View> </View>
</View> </View>
</View> </View>