Skip to content

Commit 6f64c08

Browse files
committed
lints
1 parent 35d63b1 commit 6f64c08

File tree

1 file changed

+12
-12
lines changed
  • dev/integration_tests/wide_gamut_test/lib

1 file changed

+12
-12
lines changed

dev/integration_tests/wide_gamut_test/lib/main.dart

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -327,14 +327,14 @@ class _MyHomePageState extends State<MyHomePage> {
327327
gradient: LinearGradient(
328328
begin: Alignment.topLeft,
329329
end: Alignment.bottomRight,
330-
colors: [
331-
const Color.from(
330+
colors: <Color>[
331+
Color.from(
332332
alpha: 1,
333333
red: 1,
334334
green: 0,
335335
blue: 0,
336336
colorSpace: ui.ColorSpace.displayP3),
337-
const Color.from(
337+
Color.from(
338338
alpha: 1,
339339
red: 0,
340340
green: 1,
@@ -349,14 +349,14 @@ class _MyHomePageState extends State<MyHomePage> {
349349
height: 100,
350350
decoration: const BoxDecoration(
351351
gradient: RadialGradient(
352-
colors: [
353-
const Color.from(
352+
colors: <Color>[
353+
Color.from(
354354
alpha: 1,
355355
red: 1,
356356
green: 0,
357357
blue: 0,
358358
colorSpace: ui.ColorSpace.displayP3),
359-
const Color.from(
359+
Color.from(
360360
alpha: 1,
361361
red: 0,
362362
green: 1,
@@ -372,14 +372,14 @@ class _MyHomePageState extends State<MyHomePage> {
372372
decoration: const BoxDecoration(
373373
gradient: RadialGradient(
374374
focal: Alignment(0.2, 0.2),
375-
colors: [
376-
const Color.from(
375+
colors: <Color>[
376+
Color.from(
377377
alpha: 1,
378378
red: 1,
379379
green: 0,
380380
blue: 0,
381381
colorSpace: ui.ColorSpace.displayP3),
382-
const Color.from(
382+
Color.from(
383383
alpha: 1,
384384
red: 0,
385385
green: 1,
@@ -394,14 +394,14 @@ class _MyHomePageState extends State<MyHomePage> {
394394
height: 100,
395395
decoration: const BoxDecoration(
396396
gradient: SweepGradient(
397-
colors: [
398-
const Color.from(
397+
colors: <Color>[
398+
Color.from(
399399
alpha: 1,
400400
red: 1,
401401
green: 0,
402402
blue: 0,
403403
colorSpace: ui.ColorSpace.displayP3),
404-
const Color.from(
404+
Color.from(
405405
alpha: 1,
406406
red: 0,
407407
green: 1,

0 commit comments

Comments
 (0)