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
Hello ! i stuck with a problem: i cant build a tree from bottom up.
Consider the following scenario: (i would like to store GUI widgets parent-children relationships using this lib)
Window()::new().child(Center::new(.child(Text::new("Sample text").build()).child(Text::new("Sample text 2").build()).build().build()
My problem is to append children to their parent in the build() method, i need the parent's index.But the parent is not built yet, hence its index is not exists.
How to solve this problem ?
The text was updated successfully, but these errors were encountered:
Hello ! i stuck with a problem: i cant build a tree from bottom up.
Consider the following scenario: (i would like to store GUI widgets parent-children relationships using this lib)
My problem is to append children to their parent in the build() method, i need the parent's index.But the parent is not built yet, hence its index is not exists.
How to solve this problem ?
The text was updated successfully, but these errors were encountered: