Skip to content

Commit b44192c

Browse files
committed
Homepage buttons now use icons instead of texts
1 parent b109ad5 commit b44192c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

lib/screens/homepage/homepage.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,7 @@ class _HomePageState extends State<HomePage> {
274274
Icons.insert_drive_file,
275275
size: 48,
276276
),
277+
const SizedBox(height: 8,),
277278
Text(
278279
p.name,
279280
style: TextStyle(

lib/screens/homepage/homepage_projectlist.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class ProjectList extends StatelessWidget {
5050
onPressed: () {
5151
onRefresh();
5252
},
53-
child: const Text("Refresh"),
53+
child: const Icon(Icons.refresh_rounded),
5454
),
5555
const SizedBox(
5656
width: 4,
@@ -72,7 +72,7 @@ class ProjectList extends StatelessWidget {
7272
// User canceled the picker
7373
}
7474
},
75-
child: const Text("Open"),
75+
child: const Icon(Icons.folder_open_rounded),
7676
),
7777
]),
7878
isListView

0 commit comments

Comments
 (0)