File tree Expand file tree Collapse file tree 4 files changed +33
-20
lines changed Expand file tree Collapse file tree 4 files changed +33
-20
lines changed Original file line number Diff line number Diff line change @@ -139,10 +139,15 @@ class _HomePageState extends State<HomePage> {
139
139
Icons .insert_drive_file,
140
140
size: 48 ,
141
141
),
142
- title: Text (p.name),
142
+ title: Text (
143
+ p.name,
144
+ style: const TextStyle (
145
+ fontWeight: FontWeight .bold
146
+ ),
147
+ ),
143
148
subtitle: Text (
144
149
(p.type == HistoryItemType .solution ? p.solution! .desc : "" ) +
145
- " Last Modified: " +
150
+ "Last Modified: " +
146
151
p.dateModified.toString ()),
147
152
trailing: PopupMenuButton <String >(
148
153
onSelected: (String result) {
Original file line number Diff line number Diff line change @@ -16,16 +16,19 @@ class ProjectList extends StatelessWidget {
16
16
@override
17
17
Widget build (BuildContext context) {
18
18
return Padding (
19
- padding: const EdgeInsets .all (16 .0 ),
19
+ padding: const EdgeInsets .all (5 .0 ),
20
20
child:
21
21
Column (crossAxisAlignment: CrossAxisAlignment .stretch, children: [
22
22
Row (children: [
23
- const Text (
24
- "Recent Projects" ,
25
- style: TextStyle (
26
- fontWeight: FontWeight .bold,
27
- fontSize: 24.0 ,
28
- ),
23
+ const Padding (
24
+ padding: EdgeInsets .all (10 ),
25
+ child: Text (
26
+ "Recent Projects" ,
27
+ style: TextStyle (
28
+ fontWeight: FontWeight .bold,
29
+ fontSize: 24.0 ,
30
+ ),
31
+ )
29
32
),
30
33
const Spacer (flex: 1 ),
31
34
OutlinedButton (
@@ -40,16 +43,15 @@ class ProjectList extends StatelessWidget {
40
43
OutlinedButton (
41
44
onPressed: () async {
42
45
FilePickerResult ? result =
43
- await FilePicker .platform.pickFiles (
44
- allowMultiple: false
45
- );
46
+ await FilePicker .platform.pickFiles (allowMultiple: false );
46
47
47
48
if (result != null ) {
48
49
var path = result.files.single.path;
49
- if (path != null ) {
50
+ if (path != null ) {
50
51
onAddProject (path);
51
- }else {
52
- debugPrint ("[Open Project] error: the resulting path is null" );
52
+ } else {
53
+ debugPrint (
54
+ "[Open Project] error: the resulting path is null" );
53
55
}
54
56
} else {
55
57
// User canceled the picker
Original file line number Diff line number Diff line change @@ -229,7 +229,13 @@ class SettingsPageState extends State<SettingsPage> {
229
229
setState (() {});
230
230
},
231
231
),
232
- const Text ("Installed Plugins" ),
232
+ const Text (
233
+ "Installed Plugins" ,
234
+ style: TextStyle (
235
+ fontWeight: FontWeight .bold,
236
+ fontSize: 22
237
+ ) //TODO: make this align left
238
+ ),
233
239
Column (
234
240
children: List .generate (ModulesManager .modules.length,
235
241
(index) {
Original file line number Diff line number Diff line change @@ -246,13 +246,13 @@ const editorThemes = {
246
246
"highlight" : atomOneLightTheme,
247
247
"scheme" : {
248
248
// Color settings
249
- "primaryColour" : Color (0xff13BB67 ),
250
- "secondaryColour" : Color (0xff0d8c4c ),
249
+ "primaryColour" : Color (0xff0d8c4c ),
250
+ "secondaryColour" : Color (0xff13BB67 ),
251
251
252
252
// Controls
253
- "background" : Color (0xFFE5E5E5 ),
253
+ "background" : Color (0xFFFCFCFC ),
254
254
"backgroundSecondary" : Color (0xFFFFFFFF ),
255
- "backgroundTertiary" : Color (0xFFDCDCDC ),
255
+ "backgroundTertiary" : Color (0xFFFFFFFF ),
256
256
"foreground" : Color (0xFF000000 ),
257
257
258
258
// Color symbols
You can’t perform that action at this time.
0 commit comments