align menu icon in middle of list item
parent
ef88e86c49
commit
e45a2cf42e
|
@ -400,7 +400,13 @@ function ActionListItem({ drag, navigation, device, item }) {
|
||||||
<TouchableOpacity
|
<TouchableOpacity
|
||||||
onPress={() => navigation.navigate(navigateTo, navigateToOptions)}
|
onPress={() => navigation.navigate(navigateTo, navigateToOptions)}
|
||||||
>
|
>
|
||||||
<View style={{ flexDirection: "row", justifyContent: "space-between" }}>
|
<View
|
||||||
|
style={{
|
||||||
|
flexDirection: "row",
|
||||||
|
justifyContent: "space-between",
|
||||||
|
alignItems: "center",
|
||||||
|
}}
|
||||||
|
>
|
||||||
<View
|
<View
|
||||||
style={{
|
style={{
|
||||||
flexDirection: "row",
|
flexDirection: "row",
|
||||||
|
|
Loading…
Reference in New Issue