Last updated:
0 purchases
animated fading widget
Animated Fading Widget #
Looking to FadeInOut your widget continuously with a specified duration? AnimatedFadingWidget is your solution. Just provide the duration and the widget will continuously fade in and out.
Getting Started #
Add this to your package's pubspec.yaml file
dependencies:
animated_fading_widget: ^0.0.2
copied to clipboard
Usage #
Next, you just have to import the package using:
import 'package:animated_fading_widget/animated_fading_widget.dart';
copied to clipboard
Widget build(BuildContext context) {
return AnimatedFadingWidget(
child: Text(
'Welcome !',
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 50,
),
),
duration: Duration(seconds: 2),
);
}
copied to clipboard
Contributing #
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.