File tree Expand file tree Collapse file tree 5 files changed +9
-3
lines changed Expand file tree Collapse file tree 5 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ class NavDrawer extends StatelessWidget {
6363 onTap: (bool newMode) async {
6464 AppSettings .isDarkMode = newMode;
6565 await SelectedTheme .saveMode (AppSettings .isDarkMode);
66- Get .back ();
66+ // Get.back();
6767 homeController.initLanguageAndDarkMode ();
6868 },
6969 child: Icon (
Original file line number Diff line number Diff line change @@ -16,6 +16,9 @@ class OnboardingPage extends StatelessWidget {
1616 padding: const EdgeInsets .all (35.0 ),
1717 child: Column (
1818 children: [
19+ SizedBox (
20+ height: (Get .height >= 840 ) ? 120 : 90 ,
21+ ),
1922 SvgPicture .asset (
2023 onboardingModel.image,
2124 height: Get .width / 100 * 30 ,
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ class OnboardingView extends GetView<OnboardingController> {
2020 child: Column (
2121 children: [
2222 Expanded (
23- flex: 3 ,
23+ flex: 5 ,
2424 child: PageView .builder (
2525 physics: const BouncingScrollPhysics (),
2626 controller: pageController,
Original file line number Diff line number Diff line change @@ -84,6 +84,7 @@ class SelectProfile extends StatelessWidget {
8484 'All Profiles:' ,
8585 overflow: TextOverflow .fade,
8686 style: GoogleFonts .poppins (
87+
8788 fontWeight: TaskWarriorFonts .bold,
8889 fontSize: TaskWarriorFonts .fontSizeMedium,
8990 color: AppSettings .isDarkMode
@@ -178,6 +179,7 @@ class SelectProfileListTile extends StatelessWidget {
178179 color: AppSettings .isDarkMode
179180 ? TaskWarriorColors .ksecondaryTextColor
180181 : TaskWarriorColors .kLightSecondaryTextColor,
182+ fontSize: TaskWarriorFonts .fontSizeMedium
181183 ),
182184 ),
183185 ),
@@ -191,6 +193,7 @@ class SelectProfileListTile extends StatelessWidget {
191193 color: AppSettings .isDarkMode
192194 ? TaskWarriorColors .ksecondaryTextColor
193195 : TaskWarriorColors .kLightSecondaryTextColor,
196+ fontSize: TaskWarriorFonts .fontSizeSmall
194197 ),
195198 ),
196199 ),
Original file line number Diff line number Diff line change 1- import 'package:flutter_test/flutter_test.dart' ;
1+ import 'package:flutter_test/flutter_test.dart' ;
22import 'package:taskwarrior/app/models/chart.dart' ;
33
44void main () {
You can’t perform that action at this time.
0 commit comments