animated_fading_widget

Last updated:

0 purchases

animated_fading_widget Image
animated_fading_widget Images
Add to Cart

Description:

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.

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.