Jeffrey Bunn
Jeffrey Bunn
I just added a variable font to my app and it appears to be working properly. Edit - doesn't look like bold is being picked up.
@petrnymsa Have you figured this out? Initially widgetClick was working for me, but when I added multiple widgets it stopped working. If you've solved this, any advice would be great.
@ABausG Hoping you can dig into widgetClick not working. In my case, it stopped triggering around when I added multiple widgets using a widget bundle: ``` @main struct WidgetsExample: WidgetBundle...
@mtrfnvwork Thanks for your comment. I did some experimenting and found something interesting. When I change my widget size to `.systemMedium` and use a `Link` instead of `.widgetURL`, the method...
@mtrfnvwork Thanks. I added a custom color that shows fine in the widget, so I don't think that's the problem. I guess I'll keep digging. No idea why widgetClick is...
@adrianvintu Thank you for this.
It would be great to have macOS support. Any updates on if this is in the works?
For those looking for an alternative, you can now pass a `shape` to the Material `Checkbox`. Like so: ``` final Widget control = Checkbox( shape: CircleBorder(), value: value, onChanged: onChanged,...
@Florian-Schoenherr I believe this is since Flutter 2.1 (currently 2.2 is in stable). @proninyaroslav Interesting. Mind posting a short code sample?
@proninyaroslav That works nicely, thanks for sharing.