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
Added initial support for page transitions (Special thanks to Marc and Evan)
Bug Fixes or Enhancements
Support dioxus 0.6.3
Changes
Most of the things should be on the prelude, so if you face any erros while migrating, just import prelude::*.
[v0.2.3] - 2024-01-23
Dioxus Version Bump
updated to dioxus v0.6.2
minor fixes
[v0.2.2] - 2024-01-17
Performance Improvements
Resource optimization for web
[v0.2.1] - 2024-01-11
Performance Improvements
Smoothness Optimization
New Features
Animation Sequence
[v0.2.0] - 2024-01-05
Breaking Changes
Replaced use_value_animation and use_transform_animation with use_motion hook
Removed old animation configuration system
Updated Transform property names for consistency
Changed spring physics default parameters
Removed deprecated animation methods
New Features
Added Color animation support
Introduced new AnimationConfig API
Added support for animation delays
Implemented loop modes (Infinite, Times)
Added new spring physics configuration
Improved cross-platform performance
Added new examples and documentation
Performance Improvements
Optimized animation frame handling
Reduced CPU usage on desktop platforms
Improved interpolation calculations
Better memory management
Enhanced cleanup on unmount
Bug Fixes
Fixed color interpolation for decreasing values
Corrected spring physics calculations
Fixed desktop platform timing issues
Resolved memory leaks in animation loops
Fixed transform rotation interpolation
🆕 What's New in v0.2.0
New Animation API
Unified animation hook use_animation
Simplified configuration
Enhanced type safety
Better performance
Color Animations
let color = use_motion(Color::from_rgba(59,130,246,255));
color.animate_to(Color::from_rgba(168,85,247,255),AnimationConfig::new(AnimationMode::Spring(Spring::default())));