Shawn
Shawn
I have a use case, where is seems like a combination of read and select would be nice. Or maybe there is another way I'm not aware of. I basically...
This might be a nice one to add, especially since you already support gesture()
We recently added some extensions directly to TextStyle, and they are really handy: ``` extension TextStyleHelpers on TextStyle { TextStyle get bold => copyWith(fontWeight: FontWeight.bold); TextStyle get italic => copyWith(fontStyle:...
In the latest Flutter they have enabled a classic HandCursor for Desktop and Web with: ``` MouseRegion(mouseCursor: SystemMouseCursors.click) ``` Would be nice if this could be wrapped around the .gestures()...
Would be nice to have one or both of these.
It's quite annoying to constantly be importing `CachedNetworkImage` rather than `flutter/scheduler.dart` because this package exposes a `timeDilation` setter into the global namespace.
It would be nice to use this widget's ability to calculate the optimal font size, but replace it with our own Widgets that use that info. For example, I might...
**Is your feature request related to a problem? Please describe.** It's cumbersome to manually create desktop effects for the mouse cursor. We need to either use a StatefulWidget w/ MouseRegion...
The current example shows the creation of a AnimController, but doesn't show you how to use it. Assuming you want to actually start it, you need some sort of init()...
useAnimationController would be more useful if it included: * Ability to auto-play forward or back, or a callback that lets us kick off the animation * Ability to delay the...