splash_package 0.0.1 copy "splash_package: ^0.0.1" to clipboard
splash_package: ^0.0.1 copied to clipboard

To make splash effect on click.

splash_package #

Makes an interesting splash effect when tapping its child widget.

Getting Started #

Getting Started To use this plugin, add splash_package 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_package/splash_package.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), ), ), ), ); } }

0
likes
10
pub points
0%
popularity

Publisher

unverified uploader

To make splash effect on click.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on splash_package