Skip to content

Commit

Permalink
Merge pull request #420 from arjav1528/Fixed-Issue-413
Browse files Browse the repository at this point in the history
Fixed issue 413
  • Loading branch information
Pavel401 authored Dec 26, 2024
2 parents 7a4340c + 1cb6491 commit 77848da
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/app/modules/home/views/nav_drawer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class NavDrawer extends StatelessWidget {
onTap: (bool newMode) async {
AppSettings.isDarkMode = newMode;
await SelectedTheme.saveMode(AppSettings.isDarkMode);
Get.back();
// Get.back();
homeController.initLanguageAndDarkMode();
},
child: Icon(
Expand Down
3 changes: 3 additions & 0 deletions lib/app/modules/onboarding/views/onboarding_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ class OnboardingPage extends StatelessWidget {
padding: const EdgeInsets.all(35.0),
child: Column(
children: [
SizedBox(
height: (Get.height >= 840) ? 120 : 90,
),
SvgPicture.asset(
onboardingModel.image,
height: Get.width / 100 * 30,
Expand Down
2 changes: 1 addition & 1 deletion lib/app/modules/onboarding/views/onboarding_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class OnboardingView extends GetView<OnboardingController> {
child: Column(
children: [
Expanded(
flex: 3,
flex: 5,
child: PageView.builder(
physics: const BouncingScrollPhysics(),
controller: pageController,
Expand Down
3 changes: 3 additions & 0 deletions lib/app/modules/profile/views/selectprofile.dart
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ class SelectProfile extends StatelessWidget {
'All Profiles:',
overflow: TextOverflow.fade,
style: GoogleFonts.poppins(

fontWeight: TaskWarriorFonts.bold,
fontSize: TaskWarriorFonts.fontSizeMedium,
color: AppSettings.isDarkMode
Expand Down Expand Up @@ -178,6 +179,7 @@ class SelectProfileListTile extends StatelessWidget {
color: AppSettings.isDarkMode
? TaskWarriorColors.ksecondaryTextColor
: TaskWarriorColors.kLightSecondaryTextColor,
fontSize: TaskWarriorFonts.fontSizeMedium
),
),
),
Expand All @@ -191,6 +193,7 @@ class SelectProfileListTile extends StatelessWidget {
color: AppSettings.isDarkMode
? TaskWarriorColors.ksecondaryTextColor
: TaskWarriorColors.kLightSecondaryTextColor,
fontSize: TaskWarriorFonts.fontSizeSmall
),
),
),
Expand Down
2 changes: 1 addition & 1 deletion test/models/chart_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import 'package:flutter_test/flutter_test.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:taskwarrior/app/models/chart.dart';

void main() {
Expand Down

0 comments on commit 77848da

Please sign in to comment.