theme change added

This commit is contained in:
dstark5
2023-08-23 01:18:12 -07:00
parent 010dc1dfdb
commit 162ea41196
2 changed files with 26 additions and 17 deletions

View File

@ -200,7 +200,7 @@ class _ShowDialog extends ConsumerWidget {
height: 255, height: 255,
decoration: BoxDecoration( decoration: BoxDecoration(
borderRadius: BorderRadius.circular(15), borderRadius: BorderRadius.circular(15),
color: Colors.white, color: Theme.of(context).colorScheme.tertiaryContainer,
), ),
padding: const EdgeInsets.fromLTRB(20, 20, 20, 20), padding: const EdgeInsets.fromLTRB(20, 20, 20, 20),
child: SingleChildScrollView( child: SingleChildScrollView(
@ -208,14 +208,14 @@ class _ShowDialog extends ConsumerWidget {
mainAxisAlignment: MainAxisAlignment.spaceEvenly, mainAxisAlignment: MainAxisAlignment.spaceEvenly,
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
const Padding( Padding(
padding: EdgeInsets.all(8), padding: const EdgeInsets.all(8),
child: Text( child: Text(
"Downloading Book", "Downloading Book",
style: TextStyle( style: TextStyle(
fontSize: 19, fontSize: 19,
fontWeight: FontWeight.bold, fontWeight: FontWeight.bold,
color: Color.fromARGB(255, 54, 54, 54), color: Theme.of(context).colorScheme.tertiary,
decoration: TextDecoration.none), decoration: TextDecoration.none),
), ),
), ),
@ -223,10 +223,13 @@ class _ShowDialog extends ConsumerWidget {
padding: const EdgeInsets.all(8), padding: const EdgeInsets.all(8),
child: Text( child: Text(
title, title,
style: const TextStyle( style: TextStyle(
fontSize: 13, fontSize: 13,
fontWeight: FontWeight.bold, fontWeight: FontWeight.bold,
color: Colors.black54, color: Theme.of(context)
.colorScheme
.tertiary
.withAlpha(170),
decoration: TextDecoration.none), decoration: TextDecoration.none),
overflow: TextOverflow.ellipsis, overflow: TextOverflow.ellipsis,
maxLines: 2, maxLines: 2,
@ -259,7 +262,10 @@ class _ShowDialog extends ConsumerWidget {
borderRadius: const BorderRadius.all(Radius.circular(50)), borderRadius: const BorderRadius.all(Radius.circular(50)),
child: LinearProgressIndicator( child: LinearProgressIndicator(
color: Theme.of(context).colorScheme.secondary, color: Theme.of(context).colorScheme.secondary,
backgroundColor: Colors.black26, backgroundColor: Theme.of(context)
.colorScheme
.tertiary
.withAlpha(50),
value: downloadProgress, value: downloadProgress,
minHeight: 4, minHeight: 4,
), ),

View File

@ -26,7 +26,7 @@ class ShowDeleteDialog extends ConsumerWidget {
height: 219, height: 219,
decoration: BoxDecoration( decoration: BoxDecoration(
borderRadius: BorderRadius.circular(15), borderRadius: BorderRadius.circular(15),
color: Colors.white, color: Theme.of(context).colorScheme.tertiaryContainer,
), ),
padding: const EdgeInsets.fromLTRB(20, 50, 20, 20), padding: const EdgeInsets.fromLTRB(20, 50, 20, 20),
child: SingleChildScrollView( child: SingleChildScrollView(
@ -34,25 +34,28 @@ class ShowDeleteDialog extends ConsumerWidget {
mainAxisAlignment: MainAxisAlignment.spaceEvenly, mainAxisAlignment: MainAxisAlignment.spaceEvenly,
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
const Padding( Padding(
padding: EdgeInsets.all(8), padding: const EdgeInsets.all(8),
child: Text( child: Text(
"Delete Book", "Delete Book",
style: TextStyle( style: TextStyle(
fontSize: 19, fontSize: 19,
fontWeight: FontWeight.bold, fontWeight: FontWeight.bold,
color: Color.fromARGB(255, 54, 54, 54), color: Theme.of(context).colorScheme.tertiary,
decoration: TextDecoration.none), decoration: TextDecoration.none),
), ),
), ),
const Padding( Padding(
padding: EdgeInsets.all(8), padding: const EdgeInsets.all(8),
child: Text( child: Text(
"This is permanent and cannot be undone", "This is permanent and cannot be undone",
style: TextStyle( style: TextStyle(
fontSize: 13, fontSize: 13,
fontWeight: FontWeight.bold, fontWeight: FontWeight.bold,
color: Colors.black54, color: Theme.of(context)
.colorScheme
.tertiary
.withAlpha(170),
decoration: TextDecoration.none), decoration: TextDecoration.none),
overflow: TextOverflow.ellipsis, overflow: TextOverflow.ellipsis,
maxLines: 2, maxLines: 2,
@ -88,14 +91,14 @@ class ShowDeleteDialog extends ConsumerWidget {
onDelete(); onDelete();
}, },
child: const Padding( child: Padding(
padding: EdgeInsets.all(5.0), padding: const EdgeInsets.all(5.0),
child: Text( child: Text(
'Delete', 'Delete',
style: TextStyle( style: TextStyle(
fontSize: 11, fontSize: 11,
fontWeight: FontWeight.bold, fontWeight: FontWeight.bold,
color: Colors.black, color: Theme.of(context).colorScheme.tertiary,
), ),
), ),
), ),