awesomefluttertips icon indicating copy to clipboard operation
awesomefluttertips copied to clipboard

❤️ Awesome Flutter Tips and Tricks ❤️

Results 7 awesomefluttertips issues
Sort by recently updated
recently updated
newest added

While code images can be nice looking, will you consider a PR that replaces all (static) code images with code blocks? The code images are not consistent, they've different sizes,...

Check out this package https://pub.dev/packages/freezed A great way to generate the code for your immutable data classes!

Shortcut for generating stateful/stateless widgets is either: "st" + enter = Stateful Widget "st" + downarrow + enter = Stateless Widget or "stf" + enter = Stateful Widget "stl" +...

Day 49 has a `ClipRRect` with a ridiculously high radius to do a circular widget. If you are after a circular widget, use `ClipOval` instead.