Skip to content

Commit

Permalink
home screen design
Browse files Browse the repository at this point in the history
  • Loading branch information
gmonso committed May 28, 2024
1 parent 1ce1d3c commit 3be85c6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions lib/screens/home_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ class _HomeState extends State<HomePage> {
List<dynamic> keys, int index) {
return GestureDetector(
child: Container(
margin: EdgeInsets.only(right: 0),
padding: EdgeInsets.all(10.0),
margin: EdgeInsets.all(5.0),
padding: EdgeInsets.all(20.0),
decoration: ShapeDecoration(
color: Colors.grey.shade100,
shadows: const [
Expand Down Expand Up @@ -224,6 +224,7 @@ class _HomeState extends State<HomePage> {
child: Icon(
keys[index]['icon'] as IconData,
color: Colors.black,
size: 15.0,
),
),
const SizedBox(width: 5),
Expand All @@ -232,7 +233,7 @@ class _HomeState extends State<HomePage> {
textAlign: TextAlign.center,
style: const TextStyle(
color: Color(0xFF49454F),
fontSize: 11,
fontSize: 9,
fontWeight: FontWeight.w500,
),
),
Expand Down

0 comments on commit 3be85c6

Please sign in to comment.