-
Notifications
You must be signed in to change notification settings - Fork 1
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
Add argument type #9
Conversation
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.
bottom: BorderSide(color: Colors.grey.shade400), | ||
), | ||
), | ||
width: double.infinity, |
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.
The infinite width can be removed
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.
No, that would result in a line that is as wide as the title instead of being as wide as the configuration bar.
); | ||
|
||
@override | ||
List<FieldConfigurator> get fieldConfigurators { |
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.
instead of marking every FieldConfigurator i would prefer to have two lists here instead. Like widgetFieldConfigurators and stageFieldConfiguators.
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.
Done b684705
@danielmolnar I refactored the configuration list a bit, i hope thats fine. |
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.
👌
This PR adds the possibility to separate between configurators that affect the actual widget on the stage and configurators that change properties "around" such widget (e.g. widget count, if the widget should be placed on the stage as a list).
Bildschirmaufnahme.2023-03-29.um.15.01.19.mov