Skip to content

Commit d573265

Browse files
committed
Minor Icon changes
1 parent 5b323ad commit d573265

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lib/editor.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
),

lib/filebrowser/widgets/file_widget.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)