[Vuejs]-Invariant Violation:"verticalAlign" is not a valid style property

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',
  }}

Leave a comment