Second list displayed empty #854
-
Hey, I'm making a tui tool with different view with bubble tea. The problem is the following : I want to display different list to let the user choose multiple settings (and skip view if he choose some settings). Anyway it's a simple configuration with a model struct having all information and a state variable that change the used update and view function. Here's a part of my code : ```
func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
func (m model) UpdateConv(msg tea.Msg) (tea.Model, tea.Cmd) {
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You need to update the size of your second list just like you do in your first one |
Beta Was this translation helpful? Give feedback.
You need to update the size of your second list just like you do in your first one