flutter_ripple_animation 0.0.4 copy "flutter_ripple_animation: ^0.0.4" to clipboard
flutter_ripple_animation: ^0.0.4 copied to clipboard

a ripple animation for flutter

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:packages/ripple_animation.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: const Scaffold(
        body: RipplesAnimation(
          color: Colors.green,
          child: Icon(
            Icons.bluetooth_audio_rounded,
            size: 50,
            color: Colors.white,
          ),
        ),
      ),
    );
  }
}
3
likes
135
points
44
downloads

Publisher

unverified uploader

Weekly Downloads

a ripple animation for flutter

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flutter_ripple_animation