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> {
342342 actions: [
343343 IconButton (
344344 onPressed: () => {project.run ()},
345- icon: const Icon (FontAwesomeIcons .play ),
345+ icon: const Icon (Icons .play_arrow ),
346346 tooltip: "Run Project" ,
347347 ),
348348 IconButton (
349349 onPressed: () => {Navigator .pop (context)},
350- icon: const Icon (FontAwesomeIcons .timesCircle ),
350+ icon: const Icon (Icons .close ),
351351 tooltip: "Close Project" ,
352352 ),
353353 IconButton (
354354 onPressed: () => {},
355- icon: const Icon (FontAwesomeIcons .ellipsisV )),
355+ icon: const Icon (Icons .more_horiz )),
356356 const SizedBox (width: 16.0 ),
357357 ],
358358 ),
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ class FileWidget extends StatelessWidget {
4040 Utils .getFormattedDateTime (dateTime: lastModified),
4141 );
4242 Icon fileIcon = const Icon (
43- FontAwesomeIcons .fileCode ,
43+ Icons .insert_drive_file_rounded ,
4444 size: 24 ,
4545 ); //const Icon(Icons.insert_drive_file);
4646
You can’t perform that action at this time.
0 commit comments