Skip to content

Commit

Permalink
Merge pull request #407 from ARYPROGRAMMER/fix/renderoverflex_errors
Browse files Browse the repository at this point in the history
Fix/renderoverflex errors
  • Loading branch information
Aarush-Acharya authored Nov 25, 2024
2 parents d49d9ee + a0f70b0 commit 84b74ba
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions lib/views/screens/email_verification_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,10 @@ class EmailVerificationScreen extends StatelessWidget {
],
),
),
SizedBox(
height: UiSizes.height_60,
Expanded(
flex: 1,
child: SizedBox(
height: UiSizes.height_60,
),
OtpTextField(
autoFocus: true,
Expand Down
2 changes: 1 addition & 1 deletion lib/views/screens/profile_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ class ProfileScreen extends StatelessWidget {
isCreatorProfile != null
? const Icon(Icons.add)
: const Icon(Icons.edit),
const SizedBox(width: 10),
const SizedBox(width: 8),
Text(isCreatorProfile != null ? "Follow" : "Edit Profile"),
],
),
Expand Down

0 comments on commit 84b74ba

Please sign in to comment.