mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-03-24 16:04:43 +01:00
Tweak theme
This commit is contained in:
parent
fd4b6712ef
commit
9aabe2cb10
1 changed files with 2 additions and 6 deletions
|
@ -223,9 +223,7 @@ class _HomeAlbumsState extends State<HomeAlbums> {
|
||||||
return ClipRRect(
|
return ClipRRect(
|
||||||
borderRadius: BorderRadius.circular(8),
|
borderRadius: BorderRadius.circular(8),
|
||||||
child: Container(
|
child: Container(
|
||||||
color: Theme.of(context).brightness == Brightness.light
|
color: AppTheme.getListItemBackgroundColor(context),
|
||||||
? Colors.black26
|
|
||||||
: Colors.white24,
|
|
||||||
constraints: const BoxConstraints.expand(),
|
constraints: const BoxConstraints.expand(),
|
||||||
child: cover,
|
child: cover,
|
||||||
),
|
),
|
||||||
|
@ -237,9 +235,7 @@ class _HomeAlbumsState extends State<HomeAlbums> {
|
||||||
cover: ClipRRect(
|
cover: ClipRRect(
|
||||||
borderRadius: BorderRadius.circular(8),
|
borderRadius: BorderRadius.circular(8),
|
||||||
child: Container(
|
child: Container(
|
||||||
color: Theme.of(context).brightness == Brightness.light
|
color: AppTheme.getListItemBackgroundColor(context),
|
||||||
? Colors.black26
|
|
||||||
: Colors.white24,
|
|
||||||
constraints: const BoxConstraints.expand(),
|
constraints: const BoxConstraints.expand(),
|
||||||
child: Icon(
|
child: Icon(
|
||||||
Icons.add,
|
Icons.add,
|
||||||
|
|
Loading…
Add table
Reference in a new issue