Skip to content
Discussion options

You must be logged in to vote

By default the height of a Horizontal is 1fr. This means that all of the Horizontals that you yield are going to try and share out the same space as equally as possible. A way to view it is: if your terminal is 50 lines in height, those 100 Horizontals are going to try and equally share the space, and they can't be 0.5 characters in height, so some will be 1 in height and some 0 in height. This is why you're seeing some missing (they're 0 in height) and there's no scrolling (they're all trying to stay within the vertical space of their container).

To get what you want with the code you have, you'd want to be telling Horizontal to be a different height. A good choice might be auto, which m…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@multimeric
Comment options

Answer selected by multimeric
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #2694 on May 31, 2023 07:18.