From 69e746b9c2fbb552687d96ebaecd4723998b9b2d Mon Sep 17 00:00:00 2001 From: Vishnu Mohandas Date: Sun, 17 May 2020 23:19:36 +0530 Subject: [PATCH] Remove unnecssary align --- lib/ui/setup_page.dart | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/lib/ui/setup_page.dart b/lib/ui/setup_page.dart index 893b843fd9..36ba5acc33 100644 --- a/lib/ui/setup_page.dart +++ b/lib/ui/setup_page.dart @@ -107,17 +107,14 @@ class _SetupPageState extends State { children: [ AnimatedSearchIconWidget(), Text("Searching for ente server..."), - Align( - alignment: Alignment.bottomCenter, - child: CupertinoButton( - child: Text("Enter manually instead"), - onPressed: () async { - EndpointFinder.instance.cancelSearch(); - setState(() { - _shouldSearchForEndpoint = false; - }); - }, - ), + CupertinoButton( + child: Text("Enter manually instead"), + onPressed: () async { + EndpointFinder.instance.cancelSearch(); + setState(() { + _shouldSearchForEndpoint = false; + }); + }, ), ], ),