flutter_fadein 1.0.1 copy "flutter_fadein: ^1.0.1" to clipboard
flutter_fadein: ^1.0.1 copied to clipboard

outdated

Simple Flutter widget to fade-in your widgets once they are mounted.

example/flutter_fadein.dart

import 'package:flutter/material.dart';
import 'package:flutter_fadein/flutter_fadein.dart';

void main() => runApp(FadeInDemo());

class FadeInDemo extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: Center(
          child: FadeIn(
            child: Text("This will be faded-in!"),
            // Optional paramaters
            duration: Duration(milliseconds: 250),
            curve: Curves.easeIn,
          ),
        ),
      ),
    );
  }
}
52
likes
0
pub points
94%
popularity

Publisher

verified publishercretezy.com

Simple Flutter widget to fade-in your widgets once they are mounted.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_fadein