-
Ryd Mike, I am re-doing the dynamic color builder to use flex color scheme instead so that the corePalette from android and accent color from desk equally are used as color scheme seed inputs. What form does it need to be to contribute back to the this project or Flex Seed Scheme? Otherwise one would get tone diffs between desktop and android which in my view is a design mess. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @fredgrott, Thanks for your question, it is good one that I have been meaning to add some example and guidance, and best practices on. Still on my to do list. You can do it two different ways. A) Give
|
Beta Was this translation helpful? Give feedback.
Hi @fredgrott,
Thanks for your question, it is good one that I have been meaning to add some example and guidance, and best practices on. Still on my to do list.
You can do it two different ways.
A) Give
FlexClorScheme
a ready madeColorScheme
The dynamic color gives you the main colors, for the scheme to be seed generated from, primary, secondary and tertiary. You can then make the seed generated ColorScheme with Flutter using
ColorScheme.fromSeed
.However, with Flutter SDK you can only use the main/primary key color to generate a full color scheme using
ColorScheme.fromSeed
. The resultingColorScheme
you can feed directly toFlexColorScheme.colorScheme
. Same applies if you already have …