splash_tap 0.1.2 copy "splash_tap: ^0.1.2" to clipboard
splash_tap: ^0.1.2 copied to clipboard

Makes an interesting splash effect when tapping it's child widget

Makes an interesting splash effect when tapping its child widget.

Getting Started #

To use this plugin, add splash_tap as a dependency in your pubspec.yaml file.

The color can be set with the splashColor property. The splash size is dependent on the size of the child widget passed in - which is constrained by the minRadius and maxRadius parameters.

Example #

import 'package:flutter/material.dart';  
import 'package:splash_tap/splash_tap.dart';  
  
void main() => runApp(MyApp());  
  
class MyApp extends StatelessWidget {  
  @override  
  Widget build(BuildContext context) {  
    return MaterialApp(  
      title: 'Splash Tap Demo',  
      theme: ThemeData(  
        primarySwatch: Colors.blue,  
      ),  
      home: SplashTapDemo(),  
    );  
  }  
}  
  
class SplashTapDemo extends StatelessWidget {  
  @override  
  Widget build(BuildContext context) {  
    return Scaffold(  
      body: Center(  
        child: Splash(  
          onTap: () {},  
          child: Text(  
            'Splash!',  
            style: TextStyle(fontSize: 32),  
          ),  
        ),  
      ),  
    );  
  }  
}  
15
likes
30
points
29
downloads

Publisher

verified publisherfunwith.app

Weekly Downloads

Makes an interesting splash effect when tapping it's child widget

Repository (GitHub)

License

unknown (license)

Dependencies

flutter

More

Packages that depend on splash_tap