dash-frontend: toast messages, 📦📎

This commit is contained in:
Aleksander
2025-12-08 22:42:05 +01:00
parent e7746f5981
commit b0985e33af
28 changed files with 316 additions and 80 deletions

View File

@@ -20,7 +20,7 @@ pub enum AnimationEasing {
}
impl AnimationEasing {
fn interpolate(&self, x: f32) -> f32 {
pub fn interpolate(&self, x: f32) -> f32 {
match self {
Self::Linear => x,
Self::InQuad => x.powi(2),