Last updated:
0 purchases
ripple touch
Ripple_Touch #
Add a ripple touch effect when tap the screen
Installation #
Add ripple_touch in your pubspec.yaml dependencies. And import it:
import 'package:ripple_touch/RippleManager.dart';
copied to clipboard
How to use #
Initialize the overlay as soon as you want (preferably at the application start).
// Initialize
@override
void initState() {
super.initState();
Future.delayed(Duration.zero).then((value) => RippleManager().init(context));
}
// Destroy the thing
RippleManager().dispose();
copied to clipboard
For a more detail example please take a look at the example folder.
Demo #
- #
If something is missing, feel free to open a ticket or contribute!
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.