You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 6, 2023. It is now read-only.
I see the style modifier Invert but when I have a list area that can have say 10 items in it but I only have 4 items they still appear at the top and not at the bottom of the area? I'm trying to make two lists that give the data points on say a bell curve and the lists converge on the center point. If that doesn't make sense let me know and I'll try to draw something.
The text was updated successfully, but these errors were encountered:
The Style modifier only affects the look and feel of a widget not its structure nor its layout. The available modifiers are specific to the chosen backend (termion or rustbox) and to your terminal emulator as they refer to their equivalent ANSI escape sequences. Concerning your use case, it is not possible to render a list in such way now without inserting empty strings manually. Therefore, I've added an option to change the corner where the list start to be rendered. Using:
.start_corner(Corner::BottomLeft)
should let you render the list bottom first.
Let me know if #17 fix your problem :)
I see the style modifier
Invert
but when I have a list area that can have say 10 items in it but I only have 4 items they still appear at the top and not at the bottom of the area? I'm trying to make two lists that give the data points on say a bell curve and the lists converge on the center point. If that doesn't make sense let me know and I'll try to draw something.The text was updated successfully, but these errors were encountered: