Merge pull request #1647 from iced-rs/feature/widget-request-redraw

Widget-driven animations
This commit is contained in:
Héctor Ramón 2023-01-13 20:33:59 +01:00 committed by GitHub
commit 597af315af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
20 changed files with 435 additions and 130 deletions

View file

@ -180,13 +180,6 @@ pub trait Application: Sized {
1.0
}
/// Returns whether the [`Application`] should be terminated.
///
/// By default, it returns `false`.
fn should_exit(&self) -> bool {
false
}
/// Runs the [`Application`].
///
/// On native platforms, this method will take control of the current thread

View file

@ -140,13 +140,6 @@ pub trait Sandbox {
1.0
}
/// Returns whether the [`Sandbox`] should be terminated.
///
/// By default, it returns `false`.
fn should_exit(&self) -> bool {
false
}
/// Runs the [`Sandbox`].
///
/// On native platforms, this method will take control of the current thread
@ -203,8 +196,4 @@ where
fn scale_factor(&self) -> f64 {
T::scale_factor(self)
}
fn should_exit(&self) -> bool {
T::should_exit(self)
}
}