mirror of
https://github.com/Iconica-Development/flutter_registration.git
synced 2025-05-18 21:23:43 +02:00
fix: styling
This commit is contained in:
parent
ee29893bd9
commit
ba84455e32
4 changed files with 11 additions and 4 deletions
|
@ -3,6 +3,11 @@ SPDX-FileCopyrightText: 2022 Iconica
|
|||
|
||||
SPDX-License-Identifier: GPL-3.0-or-later
|
||||
-->
|
||||
# 3.0.1
|
||||
|
||||
- Fix: Added bottom button padding.
|
||||
- Fix: Default validation message for password field.
|
||||
|
||||
# 3.0.0
|
||||
- fix: fixed the issue with the scrollController when the `pageToReturnTo` is null.
|
||||
- feat: Added default styling and theme.
|
||||
|
|
|
@ -306,8 +306,10 @@ class _AuthScreenState extends State<AuthScreen> {
|
|||
SizedBox(
|
||||
width: MediaQuery.of(context).size.width,
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.symmetric(
|
||||
horizontal: 20,
|
||||
padding: const EdgeInsets.only(
|
||||
left: 20,
|
||||
right: 20,
|
||||
bottom: 40,
|
||||
),
|
||||
child: Row(
|
||||
mainAxisAlignment: widget.steps.first !=
|
||||
|
|
|
@ -39,7 +39,7 @@ class RegistrationTranslations {
|
|||
defaultPasswordTitle = "choose a password",
|
||||
defaultPasswordLabel = "",
|
||||
defaultPasswordHint = "Password",
|
||||
defaultPasswordValidatorMessage = "Enter a valid password",
|
||||
defaultPasswordValidatorMessage = "Please enter a valid password",
|
||||
defaultPasswordToShortValidatorMessage =
|
||||
"Password needs to be at least 6 characters long";
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
name: flutter_registration
|
||||
description: A Flutter Registration package
|
||||
version: 3.0.0
|
||||
version: 3.0.1
|
||||
repository: https://github.com/Iconica-Development/flutter_registration
|
||||
|
||||
publish_to: https://forgejo.internal.iconica.nl/api/packages/internal/pub
|
||||
|
|
Loading…
Reference in a new issue