-
Notifications
You must be signed in to change notification settings - Fork 2
breaking: DuitDataSource #32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 29 commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
c91cf88
experiment - removing attribute support
lesleysin 762cf89
wip
lesleysin f6fd89c
wip
lesleysin 69425f7
wip
lesleysin b6d0847
refacror ViewAttributes class
lesleysin 38df8a7
Added tests
lesleysin 91f9432
wip
lesleysin 35e0051
Added early exit from methods
lesleysin d8b4622
Added new functions for handling JSON parsing results, improved defau…
lesleysin ca44241
docs
lesleysin 17697e3
add tests
lesleysin d59ce6c
Added tests
lesleysin 96a84a0
Removed static mapping tables for Clip, TextAlign, TextOverflow and T…
lesleysin 7bedbcd
Added new methods for JSON processing, including support for textDeco…
lesleysin fcda96e
Added tests
lesleysin 8fecb45
Removed unused methods and added new functions to handle theme rules …
lesleysin 30d2cf7
Upd .gitignore
lesleysin df2791e
wip
lesleysin 7df84be
Upd tests, added Tween parser
lesleysin e952645
Removed ventilation methods, added new functions for widget handling.…
lesleysin f46e840
Refactored functions for creating InputBorder and ShapeBorder from a …
lesleysin 39c900f
Added docs
lesleysin e7bd80c
upd actions config
lesleysin b71f6c0
wip
lesleysin 94a9876
wip
lesleysin 76e0bba
Update test/theme_test.dart
lesleysin 93b09e8
clean dead code
lesleysin 43d7888
fix
lesleysin e4ae9cf
Update lib/src/view_attributes/lookup.dart
lesleysin 0e092a1
Added export of Command.dart file to action_api and removed it from a…
lesleysin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,14 @@ | ||
| /// A command that is sent to control an action by interacting with an | ||
| /// action controller identified by [controllerId]. The command specifies | ||
| /// the [type] of action to be executed. | ||
| base class RemoteCommand { | ||
| final String controllerId; | ||
| final String type; | ||
| final Map<String, dynamic> payload; | ||
|
|
||
| const RemoteCommand({ | ||
| required this.controllerId, | ||
| required this.type, | ||
| required this.payload, | ||
| }); | ||
| } |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 was deleted.
Oops, something went wrong.
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.