Add horizontal padding to promo code message
Co-authored-by: ggurdin <46800240+ggurdin@users.noreply.github.com>
This commit is contained in:
parent
83e284590d
commit
bd97e523b0
1 changed files with 13 additions and 10 deletions
|
|
@ -199,17 +199,20 @@ class ChangeSubscription extends StatelessWidget {
|
|||
],
|
||||
),
|
||||
if (kIsWeb)
|
||||
Row(
|
||||
spacing: 8.0,
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [
|
||||
const Icon(Icons.info_outlined),
|
||||
Flexible(
|
||||
child: Text(
|
||||
L10n.of(context).promoCodeInfo,
|
||||
Padding(
|
||||
padding: const EdgeInsets.symmetric(horizontal: 16.0),
|
||||
child: Row(
|
||||
spacing: 8.0,
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [
|
||||
const Icon(Icons.info_outlined),
|
||||
Flexible(
|
||||
child: Text(
|
||||
L10n.of(context).promoCodeInfo,
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
],
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 20.0),
|
||||
],
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue