fix: content padding text field

This commit is contained in:
2024-02-07 15:54:53 +07:00
parent 9475767021
commit 59e6e82d13
8 changed files with 162 additions and 108 deletions

View File

@@ -23,7 +23,7 @@ class PasswordView extends StatelessWidget {
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
const TextTitle(title: 'Enter your phone number', fontSize: 24),
const TextTitle(title: 'Enter your password', fontSize: 24),
SizedBox(
height: 24,
),
@@ -31,9 +31,7 @@ class PasswordView extends StatelessWidget {
name: 'Password',
ctrl: controller,
obscureText: !provider.showPassword,
prefix: SizedBox(
width: 16,
),
contentPadding: EdgeInsets.all(12),
suffixIcon: GestureDetector(
onTap: () {
provider.changeShowPassword();