Skip to content

Commit

Permalink
lints
Browse files Browse the repository at this point in the history
  • Loading branch information
gaaclarke committed Sep 5, 2024
1 parent 35d63b1 commit 6f64c08
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions dev/integration_tests/wide_gamut_test/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -327,14 +327,14 @@ class _MyHomePageState extends State<MyHomePage> {
gradient: LinearGradient(
begin: Alignment.topLeft,
end: Alignment.bottomRight,
colors: [
const Color.from(
colors: <Color>[
Color.from(
alpha: 1,
red: 1,
green: 0,
blue: 0,
colorSpace: ui.ColorSpace.displayP3),
const Color.from(
Color.from(
alpha: 1,
red: 0,
green: 1,
Expand All @@ -349,14 +349,14 @@ class _MyHomePageState extends State<MyHomePage> {
height: 100,
decoration: const BoxDecoration(
gradient: RadialGradient(
colors: [
const Color.from(
colors: <Color>[
Color.from(
alpha: 1,
red: 1,
green: 0,
blue: 0,
colorSpace: ui.ColorSpace.displayP3),
const Color.from(
Color.from(
alpha: 1,
red: 0,
green: 1,
Expand All @@ -372,14 +372,14 @@ class _MyHomePageState extends State<MyHomePage> {
decoration: const BoxDecoration(
gradient: RadialGradient(
focal: Alignment(0.2, 0.2),
colors: [
const Color.from(
colors: <Color>[
Color.from(
alpha: 1,
red: 1,
green: 0,
blue: 0,
colorSpace: ui.ColorSpace.displayP3),
const Color.from(
Color.from(
alpha: 1,
red: 0,
green: 1,
Expand All @@ -394,14 +394,14 @@ class _MyHomePageState extends State<MyHomePage> {
height: 100,
decoration: const BoxDecoration(
gradient: SweepGradient(
colors: [
const Color.from(
colors: <Color>[
Color.from(
alpha: 1,
red: 1,
green: 0,
blue: 0,
colorSpace: ui.ColorSpace.displayP3),
const Color.from(
Color.from(
alpha: 1,
red: 0,
green: 1,
Expand Down

0 comments on commit 6f64c08

Please sign in to comment.