From d2be24a19155f71bede76b0e888cbf5578d47666 Mon Sep 17 00:00:00 2001 From: Vishesh Handa <me@vhanda.in> Date: Sun, 16 Feb 2020 23:58:53 +0100 Subject: [PATCH] HostSetup CloneUrl: Change text size This way one can comfortably add the entire git url. --- lib/screens/githostsetup_clone_url.dart | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/lib/screens/githostsetup_clone_url.dart b/lib/screens/githostsetup_clone_url.dart index 6151c56e..ff7a5fdd 100644 --- a/lib/screens/githostsetup_clone_url.dart +++ b/lib/screens/githostsetup_clone_url.dart @@ -46,7 +46,7 @@ class GitCloneUrlPageState extends State<GitCloneUrlPage> { key: sshUrlKey, textAlign: TextAlign.center, autofocus: true, - style: Theme.of(context).textTheme.title, + style: Theme.of(context).textTheme.subhead, decoration: const InputDecoration( hintText: 'git@github.com:GitJournal/GitJournal.git', ), @@ -55,8 +55,6 @@ class GitCloneUrlPageState extends State<GitCloneUrlPage> { textInputAction: TextInputAction.done, onFieldSubmitted: (String _) => formSubmitted(), initialValue: widget.initialValue, - minLines: 1, - maxLines: 3, ), ); @@ -131,7 +129,7 @@ class GitCloneUrlKnownProviderPageState key: sshUrlKey, textAlign: TextAlign.center, autofocus: true, - style: Theme.of(context).textTheme.title, + style: Theme.of(context).textTheme.subhead, decoration: const InputDecoration( hintText: 'git@github.com:GitJournal/GitJournal.git', ), @@ -140,8 +138,6 @@ class GitCloneUrlKnownProviderPageState textInputAction: TextInputAction.done, onFieldSubmitted: (String _) => formSubmitted(), initialValue: widget.initialValue, - minLines: 1, - maxLines: 3, ), );