@@ -37,7 +37,7 @@ class AppConfigIntField extends StatelessWidget {
3737 return Padding (
3838 padding: const EdgeInsets .symmetric (vertical: AppSpacing .sm),
3939 child: Column (
40- crossAxisAlignment: CrossAxisAlignment .start,
40+ crossAxisAlignment: CrossAxisAlignment .start, // Ensure alignment to start
4141 children: [
4242 Text (label, style: theme.textTheme.titleMedium),
4343 const SizedBox (height: AppSpacing .xs),
@@ -46,6 +46,7 @@ class AppConfigIntField extends StatelessWidget {
4646 style: theme.textTheme.bodySmall? .copyWith (
4747 color: theme.colorScheme.onSurface.withOpacity (0.7 ),
4848 ),
49+ textAlign: TextAlign .start, // Ensure text aligns to start
4950 ),
5051 const SizedBox (height: AppSpacing .xs),
5152 TextFormField (
@@ -105,7 +106,7 @@ class AppConfigTextField extends StatelessWidget {
105106 return Padding (
106107 padding: const EdgeInsets .symmetric (vertical: AppSpacing .sm),
107108 child: Column (
108- crossAxisAlignment: CrossAxisAlignment .start,
109+ crossAxisAlignment: CrossAxisAlignment .start, // Ensure alignment to start
109110 children: [
110111 Text (label, style: theme.textTheme.titleMedium),
111112 const SizedBox (height: AppSpacing .xs),
@@ -114,6 +115,7 @@ class AppConfigTextField extends StatelessWidget {
114115 style: theme.textTheme.bodySmall? .copyWith (
115116 color: theme.colorScheme.onSurface.withOpacity (0.7 ),
116117 ),
118+ textAlign: TextAlign .start, // Ensure text aligns to start
117119 ),
118120 const SizedBox (height: AppSpacing .xs),
119121 TextFormField (
0 commit comments