Skip to content

Commit

Permalink
Use symmetric instead of LTRB
Browse files Browse the repository at this point in the history
  • Loading branch information
AhmedHanafy725 committed Sep 11, 2024
1 parent dc99ee3 commit 427d5b8
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions app/lib/screens/identity_verification_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1091,7 +1091,8 @@ class _IdentityVerificationScreenState
height: 10,
),
Container(
padding: const EdgeInsets.fromLTRB(15, 10, 15, 10),
padding: const EdgeInsets.symmetric(
horizontal: 15, vertical: 10),
child: Column(
children: [
Text(
Expand Down Expand Up @@ -1123,7 +1124,8 @@ class _IdentityVerificationScreenState
)),
Container(
color: Theme.of(context).colorScheme.secondaryContainer,
padding: const EdgeInsets.fromLTRB(15, 20, 15, 20),
padding: const EdgeInsets.symmetric(
horizontal: 15, vertical: 20),
child: Column(
children: [
Row(
Expand Down Expand Up @@ -1160,7 +1162,8 @@ class _IdentityVerificationScreenState
),
),
Container(
padding: const EdgeInsets.fromLTRB(15, 20, 15, 20),
padding: const EdgeInsets.symmetric(
horizontal: 15, vertical: 20),
child: Column(
children: [
Row(
Expand Down Expand Up @@ -1200,7 +1203,8 @@ class _IdentityVerificationScreenState
),
Container(
color: Theme.of(context).colorScheme.secondaryContainer,
padding: const EdgeInsets.fromLTRB(15, 20, 15, 20),
padding: const EdgeInsets.symmetric(
horizontal: 15, vertical: 20),
child: Column(
children: [
Row(
Expand Down Expand Up @@ -1239,7 +1243,8 @@ class _IdentityVerificationScreenState
),
),
Container(
padding: const EdgeInsets.fromLTRB(15, 20, 15, 20),
padding: const EdgeInsets.symmetric(
horizontal: 15, vertical: 20),
child: Column(
children: [
Row(
Expand Down

0 comments on commit 427d5b8

Please sign in to comment.