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 {
63
63
onTap: (bool newMode) async {
64
64
AppSettings .isDarkMode = newMode;
65
65
await SelectedTheme .saveMode (AppSettings .isDarkMode);
66
- Get .back ();
66
+ // Get.back();
67
67
homeController.initLanguageAndDarkMode ();
68
68
},
69
69
child: Icon (
Original file line number Diff line number Diff line change @@ -16,6 +16,9 @@ class OnboardingPage extends StatelessWidget {
16
16
padding: const EdgeInsets .all (35.0 ),
17
17
child: Column (
18
18
children: [
19
+ SizedBox (
20
+ height: (Get .height >= 840 ) ? 120 : 90 ,
21
+ ),
19
22
SvgPicture .asset (
20
23
onboardingModel.image,
21
24
height: Get .width / 100 * 30 ,
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ class OnboardingView extends GetView<OnboardingController> {
20
20
child: Column (
21
21
children: [
22
22
Expanded (
23
- flex: 3 ,
23
+ flex: 5 ,
24
24
child: PageView .builder (
25
25
physics: const BouncingScrollPhysics (),
26
26
controller: pageController,
Original file line number Diff line number Diff line change @@ -84,6 +84,7 @@ class SelectProfile extends StatelessWidget {
84
84
'All Profiles:' ,
85
85
overflow: TextOverflow .fade,
86
86
style: GoogleFonts .poppins (
87
+
87
88
fontWeight: TaskWarriorFonts .bold,
88
89
fontSize: TaskWarriorFonts .fontSizeMedium,
89
90
color: AppSettings .isDarkMode
@@ -178,6 +179,7 @@ class SelectProfileListTile extends StatelessWidget {
178
179
color: AppSettings .isDarkMode
179
180
? TaskWarriorColors .ksecondaryTextColor
180
181
: TaskWarriorColors .kLightSecondaryTextColor,
182
+ fontSize: TaskWarriorFonts .fontSizeMedium
181
183
),
182
184
),
183
185
),
@@ -191,6 +193,7 @@ class SelectProfileListTile extends StatelessWidget {
191
193
color: AppSettings .isDarkMode
192
194
? TaskWarriorColors .ksecondaryTextColor
193
195
: TaskWarriorColors .kLightSecondaryTextColor,
196
+ fontSize: TaskWarriorFonts .fontSizeSmall
194
197
),
195
198
),
196
199
),
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' ;
2
2
import 'package:taskwarrior/app/models/chart.dart' ;
3
3
4
4
void main () {
You can’t perform that action at this time.
0 commit comments