File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -342,17 +342,17 @@ class _EditorPageState extends State<EditorPage> {
342
342
actions: [
343
343
IconButton (
344
344
onPressed: () => {project.run ()},
345
- icon: const Icon (FontAwesomeIcons .play ),
345
+ icon: const Icon (Icons .play_arrow ),
346
346
tooltip: "Run Project" ,
347
347
),
348
348
IconButton (
349
349
onPressed: () => {Navigator .pop (context)},
350
- icon: const Icon (FontAwesomeIcons .timesCircle ),
350
+ icon: const Icon (Icons .close ),
351
351
tooltip: "Close Project" ,
352
352
),
353
353
IconButton (
354
354
onPressed: () => {},
355
- icon: const Icon (FontAwesomeIcons .ellipsisV )),
355
+ icon: const Icon (Icons .more_horiz )),
356
356
const SizedBox (width: 16.0 ),
357
357
],
358
358
),
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ class FileWidget extends StatelessWidget {
40
40
Utils .getFormattedDateTime (dateTime: lastModified),
41
41
);
42
42
Icon fileIcon = const Icon (
43
- FontAwesomeIcons .fileCode ,
43
+ Icons .insert_drive_file_rounded ,
44
44
size: 24 ,
45
45
); //const Icon(Icons.insert_drive_file);
46
46
You can’t perform that action at this time.
0 commit comments