circular_reveal_animation 2.0.0 circular_reveal_animation: ^2.0.0 copied to clipboard
Circular Reveal Animation as Flutter widget! Inspired by Android's ViewAnimationUtils.createCircularReveal(...).
import 'package:circular_reveal_animation/circular_reveal_animation.dart';
import 'package:flutter/material.dart';
import 'package:url_launcher/url_launcher.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'CRA Demo',
theme: ThemeData(
primarySwatch: Colors.red,
),
home: MyHomePage(),
);
}
}
class MyHomePage extends StatefulWidget {
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage>
with SingleTickerProviderStateMixin {
late AnimationController animationController;
late Animation<double> animation;
@override
void initState() {
super.initState();
animationController = AnimationController(
vsync: this,
duration: Duration(milliseconds: 1000),
);
animation = CurvedAnimation(
parent: animationController,
curve: Curves.easeIn,
);
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("CRA Demo"),
),
body: Center(
child: SingleChildScrollView(
child: Padding(
padding: const EdgeInsets.all(16.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisSize: MainAxisSize.min,
children: <Widget>[
Text(
'This is demo of "Circular Reveal Animation" Flutter library',
style: TextStyle(fontSize: 16),
),
SizedBox(height: 4),
InkWell(
child: Text(
'https://github.com/qwert2603/circular_reveal_animation',
style: TextStyle(fontSize: 16, color: Colors.deepOrange),
),
onTap: () => launch(
"https://github.com/qwert2603/circular_reveal_animation"),
),
SizedBox(height: 4),
InkWell(
child: Text(
'https://pub.dev/packages/circular_reveal_animation',
style: TextStyle(fontSize: 16, color: Colors.deepOrange),
),
onTap: () => launch(
"https://pub.dev/packages/circular_reveal_animation"),
),
SizedBox(height: 12),
MaterialButton(
child: Text("show reveal image dialog"),
onPressed: () => showRevealImageDialog(context),
color: Colors.red,
),
SizedBox(height: 12),
MaterialButton(
child: Text("show reveal text dialog"),
onPressed: () => showRevealTextDialog(context),
color: Colors.amber,
),
SizedBox(height: 12),
MaterialButton(
child: Text("show / hide image"),
onPressed: () {
if (animationController.status == AnimationStatus.forward ||
animationController.status ==
AnimationStatus.completed) {
animationController.reverse();
} else {
animationController.forward();
}
},
color: Colors.yellow,
),
SizedBox(height: 12),
CircularRevealAnimation(
child: Image.asset(
'assets/ocv.jpg',
width: 300,
height: 300,
),
animation: animation,
// centerAlignment: Alignment.centerRight,
centerOffset: Offset(130, 100),
// minRadius: 12,
// maxRadius: 200,
),
],
),
),
),
),
);
}
void showRevealImageDialog(BuildContext context) {
showGeneralDialog(
context: context,
barrierDismissible: true,
barrierLabel: "Label",
transitionDuration: Duration(milliseconds: 700),
pageBuilder: (context, anim1, anim2) {
return Align(
alignment: Alignment.bottomCenter,
child: Container(
child: Image.asset('assets/klimt.png'),
padding: const EdgeInsets.all(12.0),
margin: EdgeInsets.only(top: 50, left: 12, right: 12, bottom: 0),
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.circular(5),
),
),
);
},
transitionBuilder: (context, anim1, anim2, child) {
return CircularRevealAnimation(
child: child,
animation: anim1,
centerAlignment: Alignment.bottomCenter,
);
},
);
}
void showRevealTextDialog(BuildContext context) {
showGeneralDialog(
context: context,
barrierDismissible: true,
barrierLabel: "Label",
transitionDuration: Duration(milliseconds: 700),
pageBuilder: (context, anim1, anim2) {
return AlertDialog(
title: Text("Title of the dialog"),
content: Text(
"Content of the dialog. Content of the dialog. Content of the dialog. Content of the dialog."),
actions: [
FlatButton(
onPressed: () => Navigator.pop(context),
child: Text("OK"),
),
],
);
},
transitionBuilder: (context, anim1, anim2, child) {
return CircularRevealAnimation(
child: child,
animation: anim1,
centerAlignment: Alignment.center,
);
},
);
}
}