splash_tap 0.0.1
splash_tap: ^0.0.1 copied to clipboard
Makes a nice splash effect when tapping it's child widget
splash_tap #
Makes a nice splash effect when tapping its child widget.
Getting Started #
To use this plugin, add splash_tap
as a dependency in your pubspec.yaml file.
Example #
import 'package:flutter/material.dart';
import 'package:splash_tap/splash_tap.dart';
void main() {
runApp(MaterialApp(
home: Scaffold(
body: Center(
child: Splash(
child: Text(
'Click!',
style: TextStyle(fontSize: 32),
),
),
),
),
));
}