-
Notifications
You must be signed in to change notification settings - Fork 67
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
Open KnobsBuilder for extension #108
Comments
Hey, I made this private because all the built-in knobs are available through methods like At the same time, color picker seems like a commonly used knob, it would be good to have it out of the box, so feel free to add this as a PR into the library itself. |
added a PR for color knob with preview - color knob support |
@divyanshuk10 I took a look at the PR. I was thinking more about showing a color wheel and letting the user pick the color on the fly, and possibly specifying a predefined list of colors to choose from. |
@Maatteogekko , Thanks for reviewing the PR. i created this knob in the case of user defined color options only. Going forward i am thinking to open a PR for a separate color palette knob for per-defined color options using a color picker. @ookami-kb Please help review & approve the PR. thanks! |
I agree with @Maatteogekko that color picker makes more sense in the context of the color knob. The list of predefined colors is just a select knob with custom renderer of the list tile. If it's needed, it's better to add support for this custom renderer to the select knob. |
Hey @ookami-kb I still think that opening Even when opening this add knob method, the convention still holds since people can just write extensions: extension CustomKnobs on KnobsNotifier {
ButtonKnobValue button(
{required String label, String? description, bool enabled = true}) =>
throw UnimplementedError();
} It would be cool to have this, such that custom knobs can be implemented and even shared (thinking #52 and the color knob). Cheers |
Hey, yeah, that makes sense. But the button looks like a valid core functionality, we should add it to the library itself. Would it be enough for your use case? |
While I think it can be a good idea for the core library, I still think you should open the Since everything else tries to be pluggable, this should as well. |
Hey @ookami-kb, should I make a PR to open up _addKnob? It would be the most open addition to truly customize flutter storybook 😊 |
Hey @buehler, yep, go ahead 👍 |
Done in #130 |
Thanks for #130 I think making |
I wanted to add a custom color picker knob and I figured I could extend the
KnobsBuilder
and/orKnobsNotifier
. But this is not possible at the moment sinceKnobsNotifier
uses a private method to register the knobsstorybook_flutter/packages/storybook_flutter/lib/src/plugins/knobs.dart
Line 130 in ce34908
I think it would be really cool to allow users to define their own knobs, just like the plugins. It also looks like it would be pretty easy to make the changes needed to allow that.
The text was updated successfully, but these errors were encountered: