Skip to content

Instantly share code, notes, and snippets.

@MarcinusX
Created March 21, 2019 19:36
Show Gist options
  • Star 11 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save MarcinusX/6925808a813e1067c52539068c9978f2 to your computer and use it in GitHub Desktop.
Save MarcinusX/6925808a813e1067c52539068c9978f2 to your computer and use it in GitHub Desktop.
Ripple effect transition
import 'package:flutter/material.dart';
import 'package:rect_getter/rect_getter.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Fab overlay transition',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(),
debugShowCheckedModeBanner: false,
);
}
}
class MyHomePage extends StatefulWidget {
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
final Duration animationDuration = Duration(milliseconds: 300);
final Duration delay = Duration(milliseconds: 300);
GlobalKey rectGetterKey = RectGetter.createGlobalKey();
Rect rect;
void _onTap() async {
setState(() => rect = RectGetter.getRectFromKey(rectGetterKey));
WidgetsBinding.instance.addPostFrameCallback((_) {
setState(() =>
rect = rect.inflate(1.3 * MediaQuery.of(context).size.longestSide));
Future.delayed(animationDuration + delay, _goToNextPage);
});
}
void _goToNextPage() {
Navigator.of(context)
.push(FadeRouteBuilder(page: NewPage()))
.then((_) => setState(() => rect = null));
}
@override
Widget build(BuildContext context) {
return Stack(
children: <Widget>[
Scaffold(
appBar: AppBar(title: Text('Fab overlay transition')),
body: Center(child: Text('This is first page')),
floatingActionButton: RectGetter(
key: rectGetterKey,
child: FloatingActionButton(
onPressed: _onTap,
child: Icon(Icons.mail_outline),
),
),
),
_ripple(),
],
);
}
Widget _ripple() {
if (rect == null) {
return Container();
}
return AnimatedPositioned(
duration: animationDuration,
left: rect.left,
right: MediaQuery.of(context).size.width - rect.right,
top: rect.top,
bottom: MediaQuery.of(context).size.height - rect.bottom,
child: Container(
decoration: BoxDecoration(
shape: BoxShape.circle,
color: Colors.blue,
),
),
);
}
}
class FadeRouteBuilder<T> extends PageRouteBuilder<T> {
final Widget page;
FadeRouteBuilder({@required this.page})
: super(
pageBuilder: (context, animation1, animation2) => page,
transitionsBuilder: (context, animation1, animation2, child) {
return FadeTransition(opacity: animation1, child: child);
},
);
}
class NewPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('NewPage'),
),
);
}
}
@DreamCatcher-SM
Copy link

I figure it out, I shouldn't set the rect to null on navigation to next page, instead is did it after pop out
`

goToNextPage() async {
dynamic q = await Navigator.of(context)
.push(FadeRouteBuilder(page: AlbumView(rect: rect)));
// I'll wait for the result then set the rect to null
//.then((
) => setState(() => rect = null));
setState(() => rect = RectGetter.getRectFromKey(rectGetterKey));
await Future.delayed(animationDuration);
setState(() => rect = null);
}

`

@pishguy
Copy link

pishguy commented Oct 14, 2020

goToNextPage() async {
dynamic q = await Navigator.of(context)
.push(FadeRouteBuilder(page: AlbumView(rect: rect)));
// I'll wait for the result then set the rect to null
//.then(() => setState(() => rect = null));
setState(() => rect = RectGetter.getRectFromKey(rectGetterKey));
await Future.delayed(animationDuration);
setState(() => rect = null);
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment