Skip to content

Commit

Permalink
Merge pull request #77 from victoreronmosele/fix/ui-update-bugs
Browse files Browse the repository at this point in the history
Fix UI Update Bugs
  • Loading branch information
victoreronmosele committed Feb 18, 2024
2 parents 2312ba4 + ca94e93 commit ec14776
Showing 1 changed file with 17 additions and 14 deletions.
31 changes: 17 additions & 14 deletions lib/ui/widgets/header/widgets/tool_bar.dart
Original file line number Diff line number Diff line change
Expand Up @@ -34,20 +34,23 @@ class ToolBar extends StatelessWidget {
child: Row(
children: [
Expanded(
child: InkWell(
onTap: () {
launchUrl(
Uri.parse('/'),

/// Open in current tab
webOnlyWindowName: '_self',
);
},
child: Text(
AppStrings.appTitle,
style: Theme.of(context).textTheme.labelLarge?.copyWith(
color: AppColors.white,
),
child: Align(
alignment: Alignment.centerLeft,
child: InkWell(
onTap: () {
launchUrl(
Uri.parse('/'),

/// Open in current tab
webOnlyWindowName: '_self',
);
},
child: Text(
AppStrings.appTitle,
style: Theme.of(context).textTheme.labelLarge?.copyWith(
color: AppColors.white,
),
),
),
),
),
Expand Down

0 comments on commit ec14776

Please sign in to comment.