-
-
Notifications
You must be signed in to change notification settings - Fork 30
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
feat!: Dart SDK compatibility #77
base: main
Are you sure you want to change the base?
Conversation
--> replaced dart:ui Color with color_model package --> custom Rect instead of dart:ui --> replaced flutter_test with test package
…/ added tests for hex decoding in ColorData
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lgtm!
/// Basic data class holding a Color in ARGB format. | ||
/// This can be converted to dart:ui's Color using the flame_tiled package | ||
class ColorData { | ||
static int _sub(int hex, int index) => (hex >> index * 8) & 0x000000ff; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just saw this in the other PR; is there a mix up between the two? If so; my comment there is valid here as well: why not store the "hex" as one value and do bit shifting in setters?
This is what Color
was doing before and so the pattern would match and the memory footprint should be the same.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes you are right that would be more efficient! This change does belong here, but I based the PR‘s branch on this one so I don‘t have to integrate the new types later!
green = _sub(hex, 1), | ||
blue = _sub(hex, 0); | ||
|
||
const ColorData.rgb(this.red, this.green, this.blue, [this.alpha = 255]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"rgba"? and why deviate from "argb"?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don’t really know, it just felt more natural. For most colors the alpha value is just 0xff so it can have a default value at the end. CSS also puts it at the end #rrggbbaa, I believe for the same reason.
This constructor is meant for users and not used internally, so I think this way is a better experience. However I‘m happy to change it!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right, I was trying to stick with the dart:ui color for familiarity.
Would this help here? https://flutter.dev/go/move-flutter-agnostic-types If yes, help me understand how. |
Yes! That would be exactly what we need here, it migrates all the types that we need out of flutter. Thanks! |
Description
This PR makes this package compatible with the Dart SDK. In order to achieve this I changed 3 things:
dart:ui
's Color with a simple ColorData classRect
fromflame
withRectangle
fromdart:math
flutter_test
withtest
packageThe
ColorData
class is used excatly once for which I prepared a flame_tiled PR (however I need to wait until this is merged right) including conversion extensions.No
Rectangle
attribute is ever read inflame_tiled
, evensoflame
already contains conversion extensions!Checklist
fix:
,feat:
,docs:
etc).-->
melos run analyze
fails due toXmlData.value
however I think this requires another issue/PRdocs
and added dartdoc comments with///
.examples
.--> I don't think there are any exmaples necessary for this
Breaking Change
I think this should result in a minor version bump to 0.11.0 to indicate these breaking changes!
In order to achieve dart comaptibilty only two things changed:
flame_tiled
contains a conversion extensiondart:math
's Rectangle --> Useflame
'stoRect()
method to convertRelated Issues