flutter_bounceable 1.1.0 copy "flutter_bounceable: ^1.1.0" to clipboard
flutter_bounceable: ^1.1.0 copied to clipboard

A simple, interactive and customizable on-tap bounce animation that can be wrapped on any widgets that you like.

example/lib/main.dart

import 'package:example/views/app_store_view.dart';
import 'package:flutter/material.dart';

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

class ExampleApp extends StatelessWidget {
  const ExampleApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      title: 'Flutter Bounceable',
      theme: ThemeData(
        scaffoldBackgroundColor: Colors.white,
        appBarTheme: const AppBarTheme(
          elevation: 0,
          backgroundColor: Colors.white,
          iconTheme: IconThemeData(
            color: Colors.black,
          ),
        ),
        primarySwatch: Colors.grey,
      ),
      home: const AppStoreView(),
    );
  }
}
164
likes
140
pub points
93%
popularity

Publisher

unverified uploader

A simple, interactive and customizable on-tap bounce animation that can be wrapped on any widgets that you like.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_bounceable