grid_item_animation 0.0.3
grid_item_animation: ^0.0.3 copied to clipboard
The grid_item_animation package. These widgets are designed to create a grid view with interactive tap animations and shadow effects.
import 'package:example/grid_item_animation.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const CustomGridViewWithShadow(),
);
}
}