added theme setting; fixed light theme issues

This commit is contained in:
Fabian Freund
2024-06-20 14:15:16 +02:00
parent db84e43e0a
commit 98e9705f1e
9 changed files with 114 additions and 18 deletions
@@ -23,7 +23,10 @@ class TabsActionButton extends HookConsumerWidget {
),
child: Container(
decoration: BoxDecoration(
border: Border.all(width: 2.0, color: Colors.white),
border: Border.all(
width: 2.0,
color: DefaultTextStyle.of(context).style.color!,
),
borderRadius: BorderRadius.circular(5.0),
),
constraints: const BoxConstraints(minWidth: 25.0),
@@ -31,7 +34,6 @@ class TabsActionButton extends HookConsumerWidget {
child: Text(
tabCount.toString(),
style: const TextStyle(
color: Colors.white,
fontWeight: FontWeight.bold,
fontSize: 14.0,
),