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