chewie
chewie copied to clipboard
Changed the mode of CircularProgressIndicator to adaptive
fixes #680
LGTM. Will have to run your changes locally before I merge.
LGTM. Will have to run your changes locally before I merge.
Thanks!
LGTM
@binSaed @diegotori is this PR ready to merge?
@binSaed @diegotori is this PR ready to merge?
I'll review it in the next couple of days, or this weekend.
@danger-ahead quick question. How does CircularProgressIndicator.adaptive() handle it's color on iOS when uses the Cupertino one?
In other words, documentation might be necessary for CupertinoControls in order to properly theme that value, or at least briefly explain what a user might do to change the indicator color on iOS.
Long story short, that adaptive version ignores valueColor and friends on iOS.
@danger-ahead quick question. How does
CircularProgressIndicator.adaptive()handle it's color on iOS when uses the Cupertino one?In other words, documentation might be necessary for
CupertinoControlsin order to properly theme that value, or at least briefly explain what a user might do to change the indicator color on iOS.Long story short, that adaptive version ignores
valueColorand friends on iOS.
On iOS, there is only one color and you can update it with background color.
CircularProgressIndicator.adaptive(
backgroundColor: Colors.red,
),