Hello,
I have been experimenting with flutterflow_ui and I find it a great great addition and I am very happy about it, but I encountered some issues when using animations in FlutterFlow and then exporting the code to a regular Flutter project. It might be that I am missing something.
Adding the import did the trick for 99% of the errors,
import 'package:flutterflow_ui/flutterflow_ui.dart';
Except for:
MoveEffect( curve: Curves.easeInOut, delay: 0.ms, duration: 600.ms, begin: const Offset(40, 0), end: const Offset(0, 0), ),
Where MoveEffect and "ms" are not defined.
Am I missing something crucial here?
Here is the code that I was testing with.