FLUTTER ECOSYSTEM

funwithflutter/splash_tap

点击时在子部件上创建叠加水花效果的 Flutter 效果部件。

splash_tap 项目封面
Stars
14
Forks
8
最近推送(UTC)
2021年9月6日
项目状态
未归档
Gordon Hayes GitHub avatar
GITHUB User

Gordon Hayes ↗

语言DartJava

此仓库发布的插件

使用的依赖

依赖清单 2 项
  • flutter{"sdk":"flutter"}
  • flutter_test开发依赖{"sdk":"flutter"}

原始 README

以下为英文项目原文快照,最新内容请访问 GitHub。

展开 / 收起项目 README

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),  
          ),  
        ),  
      ),  
    );  
  }  
}