Commit 5985bba6 authored by Ilham Maulana's avatar Ilham Maulana 💻

feat: ad text for sortcut label

parent eb244d5c
...@@ -37,6 +37,10 @@ class _HomePage extends State<HomePage> { ...@@ -37,6 +37,10 @@ class _HomePage extends State<HomePage> {
}, },
body: ListView( body: ListView(
children: <Widget>[ children: <Widget>[
const Padding(
padding: EdgeInsets.symmetric(horizontal: 20.0),
child: Text("Shortcut"),
),
Shortcut( Shortcut(
icon: Icons.book_rounded, icon: Icons.book_rounded,
title: "Books", title: "Books",
...@@ -45,12 +49,6 @@ class _HomePage extends State<HomePage> { ...@@ -45,12 +49,6 @@ class _HomePage extends State<HomePage> {
navProvider.navigate(1); navProvider.navigate(1);
}, },
), ),
Shortcut(
icon: Icons.category_rounded,
title: "Categories",
subtitle: "Find the book by category.",
onTap: () {},
),
Shortcut( Shortcut(
icon: Icons.date_range_rounded, icon: Icons.date_range_rounded,
title: "Book Loans", title: "Book Loans",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment