From be8646e80531f49ef7e2c54343037019b2db42e5 Mon Sep 17 00:00:00 2001 From: Sarah Jamie Lewis Date: Thu, 9 Jun 2022 14:30:38 -0700 Subject: [PATCH] fix padding --- lib/views/contactsview.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/views/contactsview.dart b/lib/views/contactsview.dart index 7c389e02..719336cd 100644 --- a/lib/views/contactsview.dart +++ b/lib/views/contactsview.dart @@ -254,7 +254,7 @@ class _ContactsViewState extends State { height: 200, // bespoke value courtesy of the [TextField] docs child: Center( child: Padding( - padding: EdgeInsets.all(10.0), + padding: EdgeInsets.all(2.0), child: Column( mainAxisAlignment: MainAxisAlignment.center, crossAxisAlignment: CrossAxisAlignment.center,