simple_ripple_animation 0.0.9 copy "simple_ripple_animation: ^0.0.9" to clipboard
simple_ripple_animation: ^0.0.9 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'),
      );
}
119
likes
160
pub points
96%
popularity
screenshot

Publisher

unverified uploader

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, hyper_lint

More

Packages that depend on simple_ripple_animation