Skip to content

Commit

Permalink
fix: bottom padding on login & signup (#3206)
Browse files Browse the repository at this point in the history
  • Loading branch information
g123k committed Oct 24, 2022
1 parent 3087460 commit e230641
Show file tree
Hide file tree
Showing 3 changed files with 272 additions and 240 deletions.
Expand Up @@ -86,6 +86,7 @@ class _LoginPageState extends State<LoginPage> with TraceableClientMixin {
extendBodyBehindAppBar: true,
statusBarBackgroundColor: SmoothScaffold.semiTranslucentStatusBar,
contentBehindStatusBar: true,
fixKeyboard: true,
appBar: AppBar(
backgroundColor: Colors.transparent,
elevation: 0,
Expand Down Expand Up @@ -178,7 +179,7 @@ class _LoginPageState extends State<LoginPage> with TraceableClientMixin {
hintText: appLocalizations.password,
prefixIcon: const Icon(Icons.vpn_key),
enabled: !_runningQuery,
textInputAction: TextInputAction.done,
textInputAction: TextInputAction.send,
// Hides the keyboard
autofillHints: const <String>[
AutofillHints.password,
Expand Down

0 comments on commit e230641

Please sign in to comment.