Skip to content

Commit

Permalink
fix ios.dart error
Browse files Browse the repository at this point in the history
  • Loading branch information
HaoCherHong committed May 5, 2023
1 parent 281edaa commit 8769389
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ios.dart
Expand Up @@ -404,7 +404,7 @@ Color _getBackgroundColor(Config config) {
}

final backgroundByte = int.parse(backgroundColorHex, radix: 16);
return = ColorRgba8(
return ColorRgba8(
(backgroundByte >> 16) & 0xff,
(backgroundByte >> 8) & 0xff,
(backgroundByte >> 0) & 0xff,
Expand Down

0 comments on commit 8769389

Please sign in to comment.