flutter_touch_ripple 2.2.32 copy "flutter_touch_ripple: ^2.2.32" to clipboard
flutter_touch_ripple: ^2.2.32 copied to clipboard

This flutter package is customizable touch ripple effect widget for flutter, very flexible and performant, providing smooth touch effect animations.

example/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_touch_ripple/flutter_touch_ripple.dart';

void main() {
  runApp(const RootApp());
}

class RootApp extends StatelessWidget {
  const RootApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: Center(
          child: TouchRipple(
            // Called when the user taps or clicks.
            onTap: () => print("Hello, Tap!"),
            child: const Padding(
              padding: EdgeInsets.all(20),
              child: Text("Hello, World!", style: TextStyle(fontSize: 32)),
            ),
          ),
        )
      ),
    );
  }
}
18
likes
140
points
814
downloads

Publisher

verified publisherdev.louibooks.com

Weekly Downloads

This flutter package is customizable touch ripple effect widget for flutter, very flexible and performant, providing smooth touch effect animations.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on flutter_touch_ripple