-
Notifications
You must be signed in to change notification settings - Fork 10
Closed
Description
In 0.17.0, added new feature named ChildrenAnchor/ChildrenPile instead ChildrenBinder.
But feel unlike them because we can easier replace by Anchor/Pile.
ChildrenAnchor/ChildrenPile:
// Temporary rent Grid children accessor
await this.IndicatorPile.ManipulateAsync(async children =>
{
// Show WaitingBlock control
var waitingBlock = new WaitingBlock();
children.Add(waitingBlock);
// ...
}
Anchor/Pile:
await this.IndicatorPile.ExecuteAsync(async indicator =>
{
// Show WaitingBlock control
var waitingBlock = new WaitingBlock();
indicator.Children.Add(waitingBlock);
// ...
}
So, will totally omit them.
Metadata
Metadata
Assignees
Labels
No labels