flutter_bounceable 1.1.0 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.
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(),
);
}
}