0 purchases
card animation hover
This class is a StatefulWidget that displays a card with a hover animation effect.
Features #
body: SingleChildScrollView(
child: Center(
child: Padding(
padding: const EdgeInsets.all(40.0),
child: Wrap(
spacing: 20.0,
runSpacing: 22.0,
children: cards
.map((card) => CardAnimationHover(
card: card,
showAnimation: false,
onTap: () {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => const Screen()),
);
},
))
.toList(),
),
),
),
),
final List<Map<String, String>> cards = [
for (int index = 0; index < imageUrls.length; index++) ...[
{
'image': imageUrls[index], /// required image
'header': 'Canyons', /// required header
'content': 'Lorem ipsum dolor sit amet, consectetur adipisicing elit.', /// required content
},
{
'image': imageUrls[index],
'header': 'Beaches',
'content': 'Lorem ipsum dolor sit amet, consectetur adipisicing elit.',
},
{
'image': imageUrls[index],
'header': 'Trees',
'content': 'Lorem ipsum dolor sit amet, consectetur adipisicing elit.',
},
]
];
copied to clipboard
Getting started #
dependencies:
card_animation_hover: ^0.0.2
copied to clipboard
Usage #
import 'package:card_animation_hover/card_animation_hover.dart';
copied to clipboard
Additional information #
If you have any issues, questions, or suggestions related to this package, please feel free to contact us at [email protected]. We welcome your feedback and will do our best to address any problems or provide assistance.
For more information about this package, you can also visit our GitHub repository where you can find additional resources, contribute to the package's development, and file issues or bug reports. We appreciate your contributions and feedback, and we aim to make this package as useful as possible for our users.
Thank you for using our package, and we look forward to hearing from you!
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.