fix: forgotpassword button

added padding to the forgotpassword button
This commit is contained in:
mike doornenbal 2024-08-14 14:30:47 +02:00
parent 3bccff1e70
commit ce0bc821b9
3 changed files with 24 additions and 17 deletions

View file

@ -1,3 +1,7 @@
## 7.1.2
* Added padding to the forgotpasswordRequestButton
## 7.1.1 ## 7.1.1
* Changed default theme * Changed default theme

View file

@ -250,6 +250,8 @@ Widget _createRequestForgotPasswordButton(
) => ) =>
Opacity( Opacity(
opacity: disabled ? 0.5 : 1.0, opacity: disabled ? 0.5 : 1.0,
child: Padding(
padding: const EdgeInsets.only(top: 8),
child: InkWell( child: InkWell(
onTap: !disabled ? onPressed : onDisabledPress, onTap: !disabled ? onPressed : onDisabledPress,
child: Container( child: Container(
@ -271,6 +273,7 @@ Widget _createRequestForgotPasswordButton(
), ),
), ),
), ),
),
); );
Widget _createRegisterButton( Widget _createRegisterButton(

View file

@ -1,6 +1,6 @@
name: flutter_login name: flutter_login
description: Flutter Login Component description: Flutter Login Component
version: 7.1.1 version: 7.1.2
publish_to: https://forgejo.internal.iconica.nl/api/packages/internal/pub publish_to: https://forgejo.internal.iconica.nl/api/packages/internal/pub