Fixed widget animations implementation

This commit is contained in:
Bingus 2023-02-17 11:42:49 -08:00
parent 3c095aa3f0
commit 8da098330b
No known key found for this signature in database
GPG key ID: 5F84D2AA40A9F170
4 changed files with 95 additions and 39 deletions

View file

@ -67,7 +67,7 @@ impl Tree {
}
}
/// Reconciliates the children of the tree with the provided list of widgets.
/// Reconciles the children of the tree with the provided list of widgets.
pub fn diff_children<'a, Message, Renderer>(
&mut self,
new_children: &[impl Borrow<dyn Widget<Message, Renderer> + 'a>],

View file

@ -21,7 +21,6 @@ pub use user_attention::UserAttention;
use crate::subscription::{self, Subscription};
use crate::time::Instant;
use crate::window;
/// Subscribes to the frames of the window of the running application.
///