Fixed issue bottomsheets low height situations and changed color custom list tiles

This commit is contained in:
Juan Gilsanz Polo 2022-10-21 11:26:14 +02:00
parent 3552bbced6
commit 6f9b16e94f
21 changed files with 655 additions and 632 deletions

View file

@ -35,7 +35,7 @@ class CustomListTile extends StatelessWidget {
if (icon != null) ...[
Icon(
icon,
color: const Color.fromRGBO(104, 104, 104, 1),
color: Theme.of(context).listTileTheme.iconColor,
),
const SizedBox(width: 20),
],
@ -54,8 +54,8 @@ class CustomListTile extends StatelessWidget {
const SizedBox(height: 5),
Text(
subtitle!,
style: const TextStyle(
color: Color.fromRGBO(104, 104, 104, 1),
style: TextStyle(
color: Theme.of(context).listTileTheme.iconColor,
fontSize: 14
),
),