Created
October 18, 2025 13:17
-
-
Save fredgrott/1e93dc5322be45253e21016cdf7c27e1 to your computer and use it in GitHub Desktop.
motor legacy md3 motion
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
impoart 'package:motor/motor.dart'; | |
// Duration-based motion (traditional Flutter approach) | |
final linear = Motion.linear(Duration(seconds: 1)); | |
final withCurve = Motion.curved(Duration(seconds: 1), Curves.easeInOut); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment