flutter-template icon indicating copy to clipboard operation
flutter-template copied to clipboard

chore: Linter update

Open nivisi opened this issue 3 years ago • 0 comments

ColoredBox:

// Instead of:
Container(
  color: Colors.yellow,
  child: child,
)

// Use:
ColoredBox(
  color: Colors.yellow,
  child: child,
)

DecoratedBox:

// Instead of:
Container(
  decoration: BoxDecoration(...),
  child: child,
)

// Use:
DecoratedBox(
  decoration: BoxDecoration(...),
  child: child,
)

nivisi avatar Sep 05 '22 12:09 nivisi