swipe_effect 0.0.1
swipe_effect: ^0.0.1 copied to clipboard
A nice swipe effect
Usage #
SwipeEffect(
color: Colors.cyanAccent.withAlpha(50),
callback: () {
Navigator.pop(context);
},
child: Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
floatingActionButton: FloatingActionButton(
onPressed: () {
Navigator.pushNamed(context, 'second');
},
child: const Icon(Icons.arrow_forward_rounded),
),
),
);