We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
why ? to move the decl. closer to the usage ,instead of far-away ,especially prevalent in real-world flutter usage (non fortune-500)
use-case/example/syntax :
return ClipRRect( borderRadius: BorderRadius.all( Radius.circular(12) ) => final border_radius, child: DecoratedBox( decoration: BoxDecoration( borderRadius: border_radius, color: color, ), child: child, ), );
vs.
final border_radius = BorderRadius.all( Radius.circular(12) ); // 500+ lines later return ClipRRect( borderRadius: border_radius, child: DecoratedBox( decoration: BoxDecoration( borderRadius: border_radius, color: color, ), child: child, ), );
thanks
The text was updated successfully, but these errors were encountered:
Don't love the syntax. Do love the idea. #1420
Sorry, something went wrong.
at least there are some reasonable people ,in the community .
instead of these down-voter gang members
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
why ?
to move the decl. closer to the usage ,instead of far-away ,especially prevalent in real-world flutter usage (non fortune-500)
use-case/example/syntax :
vs.
thanks
The text was updated successfully, but these errors were encountered: