Skip to content

Commit ff669a1

Browse files
committed
navigate back icon size increased
1 parent 6603ef9 commit ff669a1

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

lib/app/modules/about/views/about_page_app_bar.dart

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,17 @@ import 'package:taskwarrior/app/utils/language/sentence_manager.dart';
66

77
class AboutPageAppBar extends StatelessWidget implements PreferredSizeWidget {
88
final AboutController aboutController;
9-
const AboutPageAppBar({required this.aboutController,super.key});
9+
const AboutPageAppBar({required this.aboutController, super.key});
1010

1111
@override
1212
Widget build(BuildContext context) {
1313
return AppBar(
1414
centerTitle: true,
1515
backgroundColor: TaskWarriorColors.kprimaryBackgroundColor,
1616
title: Text(
17-
SentenceManager(
18-
currentLanguage: aboutController.selectedLanguage.value)
19-
.sentences
20-
.aboutPageAppBarTitle,
17+
SentenceManager(currentLanguage: aboutController.selectedLanguage.value)
18+
.sentences
19+
.aboutPageAppBarTitle,
2120
// style: GoogleFonts.poppins(color: TaskWarriorColors.white),
2221
style: TextStyle(
2322
fontFamily: FontFamily.poppins,
@@ -31,6 +30,7 @@ class AboutPageAppBar extends StatelessWidget implements PreferredSizeWidget {
3130
child: Icon(
3231
Icons.chevron_left,
3332
color: TaskWarriorColors.white,
33+
size: 35,
3434
),
3535
),
3636
);

lib/app/modules/profile/views/profile_view.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class ProfileView extends GetView<ProfileController> {
5050
icon: Icon(
5151
Icons.chevron_left,
5252
color: TaskWarriorColors.white,
53-
size: 30,
53+
size: 35,
5454
),
5555
),
5656
actions: [

lib/app/modules/reports/views/reports_view.dart

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ class ReportsView extends GetView<ReportsController> {
2121
controller.initReportsTour();
2222
controller.showReportsTour(context);
2323
double height = MediaQuery.of(context).size.height;
24-
TaskwarriorColorTheme tColors = Theme.of(context).extension<TaskwarriorColorTheme>()!;
24+
TaskwarriorColorTheme tColors =
25+
Theme.of(context).extension<TaskwarriorColorTheme>()!;
2526
return Scaffold(
2627
appBar: AppBar(
2728
backgroundColor: TaskWarriorColors.kprimaryBackgroundColor,
@@ -38,16 +39,16 @@ class ReportsView extends GetView<ReportsController> {
3839
child: Icon(
3940
Icons.chevron_left,
4041
color: TaskWarriorColors.white,
42+
size: 35,
4143
),
4244
),
4345
bottom: PreferredSize(
4446
preferredSize: Size.fromHeight(height * 0.1),
4547
child: TabBar(
4648
controller: controller.tabController,
4749
unselectedLabelStyle: GoogleFonts.poppins(
48-
fontWeight: TaskWarriorFonts.light,
49-
color: TaskWarriorColors.appBarUnSelectedIconsColorForReports
50-
),
50+
fontWeight: TaskWarriorFonts.light,
51+
color: TaskWarriorColors.appBarUnSelectedIconsColorForReports),
5152
indicatorColor: tColors.purpleShade,
5253
labelColor: TaskWarriorColors.white,
5354
onTap: (value) {

lib/app/modules/settings/views/settings_page_app_bar.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ class SettingsPageAppBar extends StatelessWidget
6363
child: Icon(
6464
Icons.chevron_left,
6565
color: TaskWarriorColors.white,
66+
size: 35,
6667
),
6768
),
6869
);

0 commit comments

Comments
 (0)