update recovery key ui

This commit is contained in:
Neeraj Gupta 2022-05-17 02:15:52 +05:30
parent 2a4ea117b5
commit 4046fc4efd
No known key found for this signature in database
GPG key ID: 3C5A1684DC1729E1

View file

@ -85,7 +85,7 @@ class _RecoveryKeyPageState extends State<RecoveryKeyPage> {
//dash patterns, 10 is dash width, 6 is space width
child: SizedBox(
//inner container
height: 200, //height of inner container
height: 120, //height of inner container
width:
double.infinity, //width to 100% match to parent container.
// ignore: prefer_const_literals_to_create_immutables
@ -120,21 +120,21 @@ class _RecoveryKeyPageState extends State<RecoveryKeyPage> {
),
),
),
SizedBox(
height: 80,
width: double.infinity,
child: Padding(
child: Text(
widget.subText ??
"We dont store this key, please save this in a safe place.",
style: Theme.of(context).textTheme.bodyText1,
),
padding: EdgeInsets.all(20)),
),
],
),
),
),
SizedBox(
height: 80,
width: double.infinity,
child: Padding(
child: Text(
widget.subText ??
"We dont store this key, please save this in a safe place.",
style: Theme.of(context).textTheme.bodyText1,
),
padding: EdgeInsets.symmetric(vertical: 20)),
),
Expanded(
child: Container(
alignment: Alignment.bottomCenter,