Skip to content

Commit

Permalink
status screen fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Merculiar committed Oct 30, 2024
1 parent a0cf54b commit 36a4d5b
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,17 +55,14 @@ class _KycStatusScreenState extends State<KycStatusScreen> {
Text(context.l10n.identityVerification.toUpperCase()),
),
body: Padding(
padding: const EdgeInsets.symmetric(horizontal: 24),
padding: const EdgeInsets.symmetric(horizontal: 20),
child: SafeArea(
top: false,
child: Column(
children: [
Assets.images.profileGraphic.image(height: 80),
const SizedBox(height: 20),
Padding(
padding: const EdgeInsets.symmetric(horizontal: 18),
child: _getTitle(userData.kycStatus),
),
_getTitle(userData.kycStatus),
const SizedBox(height: 20),
Padding(
padding: const EdgeInsets.symmetric(horizontal: 16),
Expand Down Expand Up @@ -115,6 +112,7 @@ class _KycStatusScreenState extends State<KycStatusScreen> {
styleSheet: MarkdownStyleSheet(
p: _titleStyle.copyWith(color: title.color),
em: _titleStyle.copyWith(color: CpColors.yellowColor),
textAlign: WrapAlignment.center,
),
);
}
Expand Down

0 comments on commit 36a4d5b

Please sign in to comment.