Skip to content

Commit 84b74ba

Browse files
Merge pull request #407 from ARYPROGRAMMER/fix/renderoverflex_errors
Fix/renderoverflex errors
2 parents d49d9ee + a0f70b0 commit 84b74ba

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

lib/views/screens/email_verification_screen.dart

+4-2
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,10 @@ class EmailVerificationScreen extends StatelessWidget {
7777
],
7878
),
7979
),
80-
SizedBox(
81-
height: UiSizes.height_60,
80+
Expanded(
81+
flex: 1,
82+
child: SizedBox(
83+
height: UiSizes.height_60,
8284
),
8385
OtpTextField(
8486
autoFocus: true,

lib/views/screens/profile_screen.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ class ProfileScreen extends StatelessWidget {
170170
isCreatorProfile != null
171171
? const Icon(Icons.add)
172172
: const Icon(Icons.edit),
173-
const SizedBox(width: 10),
173+
const SizedBox(width: 8),
174174
Text(isCreatorProfile != null ? "Follow" : "Edit Profile"),
175175
],
176176
),

0 commit comments

Comments
 (0)