Hello everyone!
I have a quick question regarding choice of a list widget.
I would like to create the following episodes list (mockup)
The rows are populated at runtime.
I’ve considered:
- 2 separate
Gtk.Box
es, one for the header row and one for the actual list, using aGtk.ListView
. This presents the difficulty that the columns width in the header must be the same as the column width in the list. - Some form of ColumnView. Would this be possible to achieve with it?
Which way would be better, in your opinion? Is there another, preferred way of doing this?
Thanks in advance!