reward_popup 0.0.3
reward_popup: ^0.0.3 copied to clipboard
A flutter package to easily implement an attractive animated pop-up animation with gift and confetti animation.
Reward Pop-Up #
A flutter package to easily implement an attractive animated pop-up animation with gift and confetti animation. This package includes a custom non-opaque route, lottie animation and an animated mesh background.
Demo #
Getting Started #
Simply import the package
import 'package:reward_pop_up/reward_pop_up.dart';
Add a reference to the showRewardPackage method
ElevatedButton(
onPressed: () => showRewardPopup(
context,
child: Positioned.fill(
child: Image.asset(
'assets/elephant.jpg',
fit: BoxFit.cover,
),
),
),
child: const Text('Pop-up example one'),
),
*New: Customize the precursor animation by passing your own animation widget!
