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
let scrollable = scrollable( column!["Scroll me!", vertical_space(800), "You did it!"] .width(Length::Fill), ) .height(100);
Length::Fill of column inside scrollable is causing this issue
as scrollable is not having width defined so column inside it is taking entire width
that is why checkbox and togger are getting hidden
Can be patched by adding width or removing Length::Fill
let scrollable = scrollable(
column!["Scroll me!", vertical_space(800), "You did it!"]
.width(Length::Fill),
)
.width(300)
.height(100);
Is there an existing issue for this?
Is this issue related to iced?
What happened?
Here's the result of running the styling example:
Note the missing checkbox and toggler to the right of the scroll area.
This code doesn't seem to be working properly.
What is the expected behavior?
Checkbox and toggler should be visible to the right of the scroll area.
Version
master
Operating System
Linux
Do you have any log output?
No response
The text was updated successfully, but these errors were encountered: