v3.0.0
animation_wrappers
एनिमेशन व्रैपर विजेट्स, बस एनिमेट किए जाने वाले बच्चे को इस व्रैपर विजेट के साथ लपेटें और उस बच्चे को एनिमेट किया जाएगा।
43लाइक 2.4 हज़ार30-दिन डाउनलोड160Pub अंक
AndroidiOSWebmacOSWindowsLinux
एनिमेशन व्रैपर विजेट्स, बस एनिमेट किए जाने वाले बच्चे को इस व्रैपर विजेट के साथ लपेटें और उस बच्चे को एनिमेट किया जाएगा। इसमें एनिमेटेड बॉटम नेविगेशन बार भी हैं।
{"sdk":"flutter"}{"sdk":"flutter"}यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
Animation Wrapper widgets, just wrap the child to be animated with this wrapper widget and that child will be animated.
To use this package, add animation_wrappers as a dependency in your pubspec.yaml file.
See example for all animation wrappers
dependencies:
animation_wrappers: ^3.0.2
import 'package:animation_wrappers/animation_wrappers.dart';
FadedScaleAnimation(
Container(
height: 200,
width: 200,
color: Colors.blue,
),
),
FadedSlideAnimation(
Container(
height: 200,
width: 200,
color: Colors.blue,
),
beginOffset: Offset(0.5, 2),
endOffset: Offset(0.5, 1),
),
FadeAnimation(
child: Container(
height: 200,
width: 200,
color: Colors.blue,
),
),
ScaleAnimation(
child: Container(
height: 200,
width: 200,
color: Colors.blue,
),
),
Many more animation wrappers will be added soon..!
Made with :heart: by Jagrit