We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hstack
vstack
@nested_panels
The nested panels get jumbled when hstack or vstack are used inside @nested_panels.
using Faker, Term
julia> panel = @nested_panels Panel( Term.hstack( Panel( @red(Faker.text()), style="red", ), Panel( @green(Faker.text()), style="green", ), ), style = "cyan", justify = :center ) ╭───────────────────────────────────────────────────────────────────────────────╮ │ ╭───────────────────────────────────────────────────────────────────────── │ │ ──────╮╭────────────────────────────────────────────────────────────────── │ │ ─────────────╮ │ │ │ Dolore sint sequi autem. Perspiciatis est cumque. Molestiae. Dolores │ │ ││ Dignissimos est cumque corporis est. Quo saepe quidem qui │ │ ab. Nesciunt │ │ │ │ cum id quo dolore. Possimus omnis quia sed aspernatur. Officia temporib │ │ us. ││ quam voluptas necessitatibus autem animi. Illo. Est voluptas │ │ aliquid │ │ │ │ Nam rem deserunt ut molestiae. Corporis delectus dicta molestiae. │ │ Et ││ sit aspernatur laborum. Nam quia. Suscipit. Quidem assumenda │ │ deleniti │ │ │ │ occaecati beatae odit mollitia voluptas. │ │ ││ quos voluptas officia. Expedita ut placeat assumenda. │ │ │ │ │ ╰───────────────────────────────────────────────────────────────────────── │ │ ──────╯╰────────────────────────────────────────────────────────────────── │ │ ─────────────╯ │ ╰───────────────────────────────────────────────────────────────────────────────╯ julia> panel = @nested_panels Panel( Term.vstack( Panel( @red(Faker.text()), style="red", ), Panel( @green(Faker.text()), style="green", ), ), style = "cyan", justify = :center ) ╭───────────────────────────────────────────────────────────────────────────────╮ │ ╭───────────────────────────────────────────────────────────────────────── │ │ ──────╮ │ │ │ Est. Fugit pariatur cupiditate. Architecto minus vel sed. Sequi eos │ │ ut │ │ │ │ porro expedita. Beatae. Dicta dolore eaque rerum dolores veniam. Vel │ │ │ │ │ │ labore ab. Ab ullam cumque totam similique. Cumque molestiae quod │ │ minima. │ │ │ ╰───────────────────────────────────────────────────────────────────────── │ │ ──────╯ │ │ ╭───────────────────────────────────────────────────────────────────────── │ │ ──────╮ │ │ │ Fugiat odit voluptatem et. Tempore consequatur libero autem vitae. │ │ Neque. │ │ │ │ Eum qui vel aperiam asperiores. Animi doloribus in rem autem. Eum │ │ nihil │ │ │ │ officia minus vitae. Ipsum ut omnis sunt ipsam omnis. Et. Et consequunt │ │ ur │ │ │ │ cumque aut nemo quis. │ │ │ │ │ ╰───────────────────────────────────────────────────────────────────────── │ │ ──────╯ │ ╰───────────────────────────────────────────────────────────────────────────────╯
Luckily, vertical stacking works pretty well by default.
julia> panel = @nested_panels Panel( Panel( @red(Faker.text()), style="red", ), Panel( @green(Faker.text()), style="green", ), style = "cyan", justify = :center ) ╭───────────────────────────────────────────────────────────────────────────────╮ │ ╭─────────────────────────────────────────────────────────────────────────╮ │ │ │ Autem debitis ducimus. Ullam culpa aliquam non et. Eligendi debitis │ │ │ │ voluptatibus non iste est. Vitae cum tenetur quam. Vel quaerat. │ │ │ │ Non doloremque sed neque consequatur explicabo. Aut sint. Qui volupt │ │ │ │ ates eum sed est. Velit voluptatem. │ │ │ ╰─────────────────────────────────────────────────────────────────────────╯ │ │ ╭─────────────────────────────────────────────────────────────────────────╮ │ │ │ Sed aut necessitatibus. Modi nihil. Eaque voluptatem. Dolorem qui │ │ │ │ cumque. Deserunt veritatis aliquam vel eveniet. Rerum. Rerum dicta │ │ │ │ qui reiciendis. Vel natus aperiam ut distinctio. Omnis. Non mollitia │ │ │ │ harum maiores. │ │ │ ╰─────────────────────────────────────────────────────────────────────────╯ │ ╰───────────────────────────────────────────────────────────────────────────────╯
The text was updated successfully, but these errors were encountered:
Yep, it's not a fully fledged feature. For more complex layouts you might need to create them manually.
Sorry, something went wrong.
No branches or pull requests
The nested panels get jumbled when
hstack
orvstack
are used inside@nested_panels
.using Faker, Term
Luckily, vertical stacking works pretty well by default.
The text was updated successfully, but these errors were encountered: