-
Notifications
You must be signed in to change notification settings - Fork 198
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes: #410 Diffs= 462725b07 chore: release flutter 0.13.12 (#7693) 1c067cba8 Implement layout scale type in CPP runtime (#7665) Co-authored-by: Gordon <pggordonhayes@gmail.com>
- Loading branch information
1 parent
6b974b4
commit 2eb6dbe
Showing
9 changed files
with
17 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
e5920f4a03339ac7c3b12ce2287404b7ed38687c | ||
462725b0766c65fe6b69530e86cd0de46a8795b3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
lib/src/dynamic_library_helper/dynamic_library_helper_ffi.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export 'package:rive_common/src/dynamic_library_helper.dart' | ||
show applyWorkaroundToRiveOnOldAndroidVersions; |
3 changes: 3 additions & 0 deletions
3
lib/src/dynamic_library_helper/dynamic_library_helper_stub.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
void applyWorkaroundToRiveOnOldAndroidVersions() { | ||
throw UnsupportedError('Platform not supported'); | ||
} |
2 changes: 2 additions & 0 deletions
2
lib/src/dynamic_library_helper/dynamic_library_helper_web.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
// Mock implementation for web | ||
void applyWorkaroundToRiveOnOldAndroidVersions() {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters