mirror of
https://github.com/xvrh/lottie-flutter.git
synced 2025-08-06 16:39:36 +08:00
Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
0e7499d82e | |||
4cd9ec759a |
4
.github/workflows/publish-on-pub.yaml
vendored
4
.github/workflows/publish-on-pub.yaml
vendored
@ -8,9 +8,9 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: subosito/flutter-action@v1
|
||||
- uses: subosito/flutter-action@v2
|
||||
with:
|
||||
channel: 'beta'
|
||||
channel: 'stable'
|
||||
- run: flutter pub get
|
||||
- run: flutter pub run tool/publish/comment_dependency_overrides.dart
|
||||
- run: flutter pub get
|
||||
|
@ -1,3 +1,6 @@
|
||||
## [1.4.1]
|
||||
- Allow `AlignmentGeometry` for `alignment`.
|
||||
|
||||
## [1.4.0]
|
||||
- Added `filterQuality` property to control the performance vs quality trade-off to use when drawing images
|
||||
|
||||
|
@ -52,7 +52,7 @@ class Lottie extends StatefulWidget {
|
||||
double? width,
|
||||
double? height,
|
||||
BoxFit? fit,
|
||||
Alignment? alignment,
|
||||
AlignmentGeometry? alignment,
|
||||
String? package,
|
||||
bool? addRepaintBoundary,
|
||||
FilterQuality? filterQuality,
|
||||
@ -101,7 +101,7 @@ class Lottie extends StatefulWidget {
|
||||
double? width,
|
||||
double? height,
|
||||
BoxFit? fit,
|
||||
Alignment? alignment,
|
||||
AlignmentGeometry? alignment,
|
||||
bool? addRepaintBoundary,
|
||||
FilterQuality? filterQuality,
|
||||
WarningCallback? onWarning,
|
||||
@ -147,7 +147,7 @@ class Lottie extends StatefulWidget {
|
||||
double? width,
|
||||
double? height,
|
||||
BoxFit? fit,
|
||||
Alignment? alignment,
|
||||
AlignmentGeometry? alignment,
|
||||
bool? addRepaintBoundary,
|
||||
FilterQuality? filterQuality,
|
||||
WarningCallback? onWarning,
|
||||
@ -193,7 +193,7 @@ class Lottie extends StatefulWidget {
|
||||
double? width,
|
||||
double? height,
|
||||
BoxFit? fit,
|
||||
Alignment? alignment,
|
||||
AlignmentGeometry? alignment,
|
||||
bool? addRepaintBoundary,
|
||||
FilterQuality? filterQuality,
|
||||
WarningCallback? onWarning,
|
||||
|
@ -1,6 +1,6 @@
|
||||
name: lottie
|
||||
description: Render After Effects animations natively on Flutter. This package is a pure Dart implementation of a Lottie player.
|
||||
version: 1.4.0
|
||||
version: 1.4.1
|
||||
homepage: https://github.com/xvrh/lottie-flutter
|
||||
|
||||
environment:
|
||||
|
Reference in New Issue
Block a user