This commit is contained in:
mike doornenbal 2024-08-16 09:35:50 +02:00 committed by GitHub
commit 9c25c604a0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 11 additions and 4 deletions

View file

@ -3,6 +3,11 @@ SPDX-FileCopyrightText: 2022 Iconica
SPDX-License-Identifier: GPL-3.0-or-later 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 # 3.0.0
- fix: fixed the issue with the scrollController when the `pageToReturnTo` is null. - fix: fixed the issue with the scrollController when the `pageToReturnTo` is null.
- feat: Added default styling and theme. - feat: Added default styling and theme.

View file

@ -306,8 +306,10 @@ class _AuthScreenState extends State<AuthScreen> {
SizedBox( SizedBox(
width: MediaQuery.of(context).size.width, width: MediaQuery.of(context).size.width,
child: Padding( child: Padding(
padding: const EdgeInsets.symmetric( padding: const EdgeInsets.only(
horizontal: 20, left: 20,
right: 20,
bottom: 40,
), ),
child: Row( child: Row(
mainAxisAlignment: widget.steps.first != mainAxisAlignment: widget.steps.first !=

View file

@ -39,7 +39,7 @@ class RegistrationTranslations {
defaultPasswordTitle = "choose a password", defaultPasswordTitle = "choose a password",
defaultPasswordLabel = "", defaultPasswordLabel = "",
defaultPasswordHint = "Password", defaultPasswordHint = "Password",
defaultPasswordValidatorMessage = "Enter a valid password", defaultPasswordValidatorMessage = "Please enter a valid password",
defaultPasswordToShortValidatorMessage = defaultPasswordToShortValidatorMessage =
"Password needs to be at least 6 characters long"; "Password needs to be at least 6 characters long";

View file

@ -4,7 +4,7 @@
name: flutter_registration name: flutter_registration
description: A Flutter Registration package description: A Flutter Registration package
version: 3.0.0 version: 3.0.1
repository: https://github.com/Iconica-Development/flutter_registration repository: https://github.com/Iconica-Development/flutter_registration
publish_to: https://forgejo.internal.iconica.nl/api/packages/internal/pub publish_to: https://forgejo.internal.iconica.nl/api/packages/internal/pub