[Vuejs]-Nativescript-vue issue with list in GridLayout

0👍

Couple things:

  1. your last Label has col instead of column.
  2. auto in the rows/columns field of the grid layout means “let this component take up the space it needs for its dimensions.” * means “take up the available space remaining.” You can also do things like 2* to say “this item should take up 2 times the remaining space as the other items.”
    1. if the components are overflowing the GridLayout then maybe the sum of all your items inside the GridLayout is greater than the height of the GridLayout. Consider settings heights on your labels or increasing the height of your GridLayout.

Leave a comment