Skip to content

Commit

Permalink
Fixing ui
Browse files Browse the repository at this point in the history
  • Loading branch information
Vustron committed Nov 15, 2023
1 parent 645ce8c commit 30921ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/components/worldtimeContent.dart
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class _WorldTimeContentState extends State<WorldTimeContent> {
),
),
child: Padding(
padding: EdgeInsets.fromLTRB(0, 120.0, 0, 0),
padding: EdgeInsets.fromLTRB(0, 150.0, 0, 0),
child: Column(
children: <Widget>[
TextButton.icon(
Expand Down
2 changes: 1 addition & 1 deletion lib/views/worldtimeView.dart
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class _WorldTimeState extends State<WorldTime> {

String bgImage = (data['isDayTime'] ?? false) ? 'day.jpg' : 'night.jpg';
Color textColor =
(data['isDayTime'] ?? false) ? Colors.white : Colors.white70;
(data['isDayTime'] ?? false) ? Colors.amber : Colors.amber;

return Scaffold(
body: Column(
Expand Down

0 comments on commit 30921ba

Please sign in to comment.