|
@@ -42,9 +42,10 @@ class ImmichSliverAppBar extends ConsumerWidget {
|
|
top: 5,
|
|
top: 5,
|
|
child: IconButton(
|
|
child: IconButton(
|
|
splashRadius: 25,
|
|
splashRadius: 25,
|
|
- icon: const Icon(
|
|
|
|
|
|
+ icon: Icon(
|
|
Icons.face_outlined,
|
|
Icons.face_outlined,
|
|
size: 30,
|
|
size: 30,
|
|
|
|
+ color: Theme.of(context).primaryColor,
|
|
),
|
|
),
|
|
onPressed: () {
|
|
onPressed: () {
|
|
Scaffold.of(context).openDrawer();
|
|
Scaffold.of(context).openDrawer();
|
|
@@ -109,7 +110,10 @@ class ImmichSliverAppBar extends ConsumerWidget {
|
|
splashRadius: 25,
|
|
splashRadius: 25,
|
|
iconSize: 30,
|
|
iconSize: 30,
|
|
icon: isEnableAutoBackup
|
|
icon: isEnableAutoBackup
|
|
- ? const Icon(Icons.backup_rounded)
|
|
|
|
|
|
+ ? Icon(
|
|
|
|
+ Icons.backup_rounded,
|
|
|
|
+ color: Theme.of(context).primaryColor,
|
|
|
|
+ )
|
|
: Badge(
|
|
: Badge(
|
|
padding: const EdgeInsets.all(4),
|
|
padding: const EdgeInsets.all(4),
|
|
elevation: 3,
|
|
elevation: 3,
|
|
@@ -120,7 +124,10 @@ class ImmichSliverAppBar extends ConsumerWidget {
|
|
size: 8,
|
|
size: 8,
|
|
color: Colors.indigo,
|
|
color: Colors.indigo,
|
|
),
|
|
),
|
|
- child: const Icon(Icons.backup_rounded),
|
|
|
|
|
|
+ child: Icon(
|
|
|
|
+ Icons.backup_rounded,
|
|
|
|
+ color: Theme.of(context).primaryColor,
|
|
|
|
+ ),
|
|
),
|
|
),
|
|
onPressed: () async {
|
|
onPressed: () async {
|
|
var onPop = await AutoRouter.of(context)
|
|
var onPop = await AutoRouter.of(context)
|