0👍
There is no vertical-align in Vue Native.
Use alignItems with flexbox instead:
https://nativescript-vue.org/en/docs/elements/layouts/flexbox-layout/
style={{
flex: 1,
flexDirection: 'row',
alignItems: 'center',
}}
- [Vuejs]-How to get current name of a router in Vue?
- [Vuejs]-How to prevent android keyboard from pushing html layout up like ios in vue?
Source:stackexchange.com