gizak / termui

Golang terminal dashboard
MIT License
13.11k stars 786 forks source link

Add Rows in Rows #150

Closed toby1991 closed 5 years ago

toby1991 commented 7 years ago
rows {
  cols ....
  cols ...
  cols {
    rows {
      cols ...
      cols ...
      ...
    }
    rows {
      cols ...
      cols ...
      ...
    }
    ...
  }
  ...
}
cjbassi commented 5 years ago

Hi, this was just added to master in 958a28575d7411492d25e42da3ad5a6e5947d9a4, and you can check out the grid example to see how it works. You can now arbitrarily nest Rows and Columns. Do note that the Grid has been heavily reworked, along with most of termui in that commit.