mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-07 21:48:14 -08:00
fix: Use icon/text styling
This commit is contained in:
parent
bc4be789ec
commit
3f9b1e7068
1 changed files with 9 additions and 5 deletions
|
|
@ -68,12 +68,16 @@ class SettingsListTile extends StatelessWidget {
|
|||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.start,
|
||||
children: [
|
||||
ColorFiltered(
|
||||
colorFilter: ColorFilter.mode(
|
||||
contentColor ?? Theme.of(context).colorScheme.onSurface,
|
||||
BlendMode.srcIn,
|
||||
DefaultTextStyle.merge(
|
||||
style: TextStyle(
|
||||
color: contentColor ?? Theme.of(context).colorScheme.onSurface,
|
||||
),
|
||||
child: IconTheme(
|
||||
data: IconThemeData(
|
||||
color: contentColor ?? Theme.of(context).colorScheme.onSurface,
|
||||
),
|
||||
child: leadingWidget,
|
||||
),
|
||||
child: leadingWidget,
|
||||
),
|
||||
Expanded(
|
||||
child: Column(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue