animated_fading_widget 0.0.2 copy "animated_fading_widget: ^0.0.2" to clipboard
animated_fading_widget: ^0.0.2 copied to clipboard

Looking to FadeInOut your widget with a specified duration? Just provide the duration and the widget will continuously fade in and out.

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.

Image

Getting Started #

Add this to your package's pubspec.yaml file

dependencies:
  animated_fading_widget: ^0.0.2

Usage #

Next, you just have to import the package using:

import 'package:animated_fading_widget/animated_fading_widget.dart';
  Widget build(BuildContext context) {
    return AnimatedFadingWidget(
        child: Text(
            'Welcome !',
            style: TextStyle(
            fontWeight: FontWeight.bold,
            fontSize: 50,
            ),
        ),
        duration: Duration(seconds: 2),
    );
  }

Contributing #

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

2
likes
140
pub points
47%
popularity

Publisher

unverified uploader

Looking to FadeInOut your widget with a specified duration? Just provide the duration and the widget will continuously fade in and out.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on animated_fading_widget