Skip to content

Commit ea80577

Browse files
Merge pull request #5 from codegasms/profile-fix
Fix screen overflow in profile page
2 parents e253857 + 99c0ef9 commit ea80577

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

farmerapp/lib/pages/subpages/profile.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class _ProfilePageState extends State<ProfilePage> {
3434
return Scaffold(
3535
body: SingleChildScrollView(
3636
child: Padding(
37-
padding: const EdgeInsets.all(30),
37+
padding: const EdgeInsets.all(10),
3838
child: Column(
3939
crossAxisAlignment: CrossAxisAlignment.start,
4040
children: [

farmerapp/lib/pages/subpages/settings/helper/setting_item.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class SettingItem extends StatelessWidget {
4040
Text(
4141
title,
4242
style: const TextStyle(
43-
fontSize: 16,
43+
fontSize: 14,
4444
fontWeight: FontWeight.w500,
4545
),
4646
),

0 commit comments

Comments
 (0)