More UI improvements

This commit is contained in:
Juan Gilsanz Polo 2022-11-05 04:10:49 +01:00
parent 5a12311c88
commit 2118f1f02d
7 changed files with 27 additions and 17 deletions

View file

@ -32,8 +32,15 @@ class CustomRadioListTile extends StatelessWidget {
vertical: 12
),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
mainAxisAlignment: MainAxisAlignment.start,
children: [
const SizedBox(width: 8),
CustomRadio(
value: value,
groupValue: groupValue,
backgroundColor: radioBackgroundColor,
),
const SizedBox(width: 24),
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
@ -62,13 +69,6 @@ class CustomRadioListTile extends StatelessWidget {
]
],
),
const SizedBox(width: 16),
CustomRadio(
value: value,
groupValue: groupValue,
backgroundColor: radioBackgroundColor,
),
const SizedBox(width: 8),
],
),
),