animated_emerge 2.0.0 copy "animated_emerge: ^2.0.0" to clipboard
animated_emerge: ^2.0.0 copied to clipboard

AnimatedEmerge simply animates the visibility of a widget.

AnimatedEmerge simply animates the visibility of a widget.

Usage:

class App extends StatelessWidget {
  const App({super.key});

  @override
  Widget build(BuildContext context) {
    return AnimatedEmerge(
      emerged: true, // toggle this to change the visibility of the child widget
      child: SizedBox.square( // the child widget can of course be anything
        dimension: 100,
        child: ClipOval(
          child: DecoratedBox(
            decoration: BoxDecoration(
              color: Colors.blue.shade500,
            )
          ),
        ),
      )
    );
  }
}
1
likes
150
pub points
43%
popularity

Publisher

unverified uploader

AnimatedEmerge simply animates the visibility of a widget.

Repository (GitLab)
View/report issues

Documentation

API reference

License

GPL-3.0 (license)

Dependencies

flutter

More

Packages that depend on animated_emerge