FLUTTER ECOSYSTEM

srujanmhase/reward_popup

srujanmhase/reward_popup open-source repository details.

पुरस्कार पॉपअप प्रोजेक्ट कवर
Stars
2
Forks
2
अंतिम पुश (UTC)
2 दिस॰ 2023
प्रोजेक्ट स्थिति
सक्रिय
Srujan Mhase GitHub avatar
GITHUB User

Srujan Mhase ↗

Web, Flutter dev; Work github account different

Mumbai
भाषाएँDartC++CMakeHTMLSwiftCJavaKotlinObjective-C

इस रिपॉज़िटरी के पैकेज

उपयोग की गई निर्भरताएँ

निर्भरता सूची 4 आइटम
  • flutter{"sdk":"flutter"}
  • lottie^2.4.0
  • flutter_testडेवलपमेंट{"sdk":"flutter"}
  • flutter_lintsडेवलपमेंट^2.0.0

मूल README

यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।

README खोलें / बंद करें

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

Video

Getting Started

Simply import the package

import 'package:reward_pop_up/reward_pop_up.dart';

Add a reference to the showRewardPackage method

More examples in the example directory of the repository & example tab.

ElevatedButton(
              onPressed: () async {
                final answer = await showRewardPopup<String>(
                  context,
                  backgroundColor: Colors.black,
                  child: Positioned.fill(
                    child: InkWell(
                      onTap: () {
                        Navigator.of(context).pop(true);
                      },
                      child: Image.asset(
                        'assets/elephant.jpg',
                        fit: BoxFit.cover,
                      ),
                    ),
                  ),
                );
                //Use answer
              },
              child: const Text('Pop-up example one'),
            ),

*New: Customize the precursor animation by passing your own animation widget!

Contributors

https://github.com/srujanmhase.png
srujanmhase

https://github.com/bahadirarslan.png
bahadirarslan