simple_ripple_animation 0.1.0 copy "simple_ripple_animation: ^0.1.0" to clipboard
simple_ripple_animation: ^0.1.0 copied to clipboard

This package provide ripple animation widget that is easy to set up and customise, and it looks beautiful in any color you choose.

example/lib/main.dart

import 'package:example/demo.dart';
import 'package:flutter/material.dart';

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

///Main material app of the app
class MyApp extends StatelessWidget {
  ///initialize the material app
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) => MaterialApp(
        title: 'Flutter Demo',
        debugShowCheckedModeBanner: false,
        theme: ThemeData(
          primarySwatch: const MaterialColor(0xFF091D36, <int, Color>{
            50: Color(0xFFE1E4E7),
            100: Color(0xFFB5BBC3),
            200: Color(0xFF848E9B),
            300: Color(0xFF536172),
            400: Color(0xFF2E3F54),
            500: Color(0xff091D36),
            600: Color(0xFF081A30),
            700: Color(0xFF061529),
            800: Color(0xFF051122),
            900: Color(0xFF020A16),
          }),
        ),
        home: const MyHomePage(title: 'Ripple animation demo'),
      );
}
copied to clipboard
147
likes
150
points
5.71k
downloads
screenshot

Publisher

unverified uploader

Weekly Downloads

2024.09.13 - 2025.03.28

This package provide ripple animation widget that is easy to set up and customise, and it looks beautiful in any color you choose.

Repository (GitHub)
View/report issues

Documentation

Documentation
API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on simple_ripple_animation