Skip to content

Commit

Permalink
fix: fps counter text color
Browse files Browse the repository at this point in the history
  • Loading branch information
adil192 committed Sep 17, 2024
1 parent e361f3c commit 06ff85b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/pages/play.dart
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,10 @@ class FpsCounter extends StatelessWidget {
builder: (context, fps, _) {
return Text(
fps.toString(),
style: const TextStyle(fontSize: 24),
style: TextStyle(
fontSize: 24,
color: Colors.white.withOpacity(0.9),
),
);
},
);
Expand Down

0 comments on commit 06ff85b

Please sign in to comment.