rivo / tview

Terminal UI library with rich, interactive widgets — written in Golang
MIT License
11.17k stars 574 forks source link

The cells in the table do not support line feed #903

Closed guocaifeng closed 1 year ago

guocaifeng commented 1 year ago

The cell has a large field and cannot display all the data

rivo commented 1 year ago

Yes, that's a limitation of Table. A cell can only display one line of text. If you want more, you might want to look into Grid but that's fundamentally a different component.

guocaifeng commented 1 year ago

Thank you very much