File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed
Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 22# packages, and plugins designed to encourage good coding practices.
33include : package:flutter_lints/flutter.yaml
44
5+ analyzer :
6+ exclude :
7+ # Those are often shit
8+ - lib/gen/**
9+
510linter :
611 # A list of all available lints and their documentation is published at
712 # https://dart-lang.github.io/linter/lints/index.html.
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ class Disabled extends StatelessWidget {
4040 decoration: BoxDecoration (
4141 boxShadow: [
4242 BoxShadow (
43- color: t.colorScheme.background ,
43+ color: t.colorScheme.surface ,
4444 spreadRadius: 14 ,
4545 blurRadius: 22 ,
4646 ),
Original file line number Diff line number Diff line change @@ -112,6 +112,8 @@ class _BatteryContainer extends StatelessWidget {
112112 Widget build (BuildContext context) {
113113 final t = Theme .of (context);
114114 // TODO: Maybe move this advanced color stuff somewhere else someday
115+ // yep... well but like... what else i'm supposed to??
116+ // ignore: deprecated_member_use
115117 final color = Hct .fromInt (t.colorScheme.primary.value);
116118 final palette = TonalPalette .of (color.hue, color.chroma);
117119 return ClipRRect (
You can’t perform that action at this time.
0 commit comments