Answers for "flutter Animated Opacity"

2

flutter Animated Opacity

AnimatedOpacity(
                onEnd: () => print('Fade FlutterLogo'),
                curve: Curves.easeIn,
                duration: const Duration(milliseconds: 500),
                opacity: 1,
                child: const FlutterLogo(size: 40.0,)
            )
Posted by: Guest on September-09-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language