flutter_touch_ripple 2.2.4 copy "flutter_touch_ripple: ^2.2.4" to clipboard
flutter_touch_ripple: ^2.2.4 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)),
            ),
          ),
        )
      ),
    );
  }
}
23
likes
0
points
593
downloads

Publisher

verified publisherttangkong.dev

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

License

unknown (license)

Dependencies

flutter

More

Packages that depend on flutter_touch_ripple