-
-
Notifications
You must be signed in to change notification settings - Fork 85
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
Upstream/2023 48 fix UI #102
base: master
Are you sure you want to change the base?
Conversation
- if legend label has long text, it will causing overflow issue - fixed it by adding Expanded in LegendPosition left and right β¨ feat: add prefix and suffix parameters in ChartValuesOptions - need this parameters in certain use case.
- this paramater was added to fix issue when legedPosition is right or left
@@ -47,8 +47,8 @@ android { | |||
applicationId "com.example.example" | |||
// You can update the following values to match your application needs. | |||
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration. | |||
minSdkVersion flutter.minSdkVersion | |||
targetSdkVersion flutter.targetSdkVersion | |||
minSdkVersion 28 |
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.
Are we sure we need to hardcode here?
@singhtaranjeet any insights?
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 it's fine to have it as hardcoded and it totally depends upon the requirements of the project but do we actually need to set it at 28 which is android 9?
Default of flutter 3.16 minSdkVersion is 19.
And Default of previous flutter version was android 16.
IMO we can go with flutter default as of now but in future if project requires then we can make the values hardcoded.
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.
@tajjacob any specific reason we changed this?
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.
@apgapg this one for my project. I can change it to default back
π ui: fix legend label overflow issue in LegendPosition left and right
π ui: fix legend label text lines in Legend
β¨ parameter: add legendWidth parameter in LegendOptions
π ui: add separator in chartValue