Skip to content

Commit

Permalink
Create password fields width on wide window
Browse files Browse the repository at this point in the history
Fixes #1002
  • Loading branch information
Chralu authored and redDwarf03 committed Jun 17, 2024
1 parent fdb7d84 commit 6067092
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ui/widgets/components/app_text_field.dart
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ class _AppTextFieldState extends ConsumerState<AppTextField> {
Widget build(BuildContext context) {
return Container(
margin: EdgeInsets.only(
left: widget.leftMargin ?? MediaQuery.of(context).size.width * 0.105,
right: widget.rightMargin ?? MediaQuery.of(context).size.width * 0.105,
left: widget.leftMargin ?? 70,
right: widget.rightMargin ?? 70,
top: widget.topMargin!,
),
padding: widget.padding,
Expand Down

0 comments on commit 6067092

Please sign in to comment.