mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 16:56:19 +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(
|
||||
borderRadius: BorderRadius.circular(8),
|
||||
child: Container(
|
||||
color: Theme.of(context).brightness == Brightness.light
|
||||
? Colors.black26
|
||||
: Colors.white24,
|
||||
color: AppTheme.getListItemBackgroundColor(context),
|
||||
constraints: const BoxConstraints.expand(),
|
||||
child: cover,
|
||||
),
|
||||
|
@ -237,9 +235,7 @@ class _HomeAlbumsState extends State<HomeAlbums> {
|
|||
cover: ClipRRect(
|
||||
borderRadius: BorderRadius.circular(8),
|
||||
child: Container(
|
||||
color: Theme.of(context).brightness == Brightness.light
|
||||
? Colors.black26
|
||||
: Colors.white24,
|
||||
color: AppTheme.getListItemBackgroundColor(context),
|
||||
constraints: const BoxConstraints.expand(),
|
||||
child: Icon(
|
||||
Icons.add,
|
||||
|
|
Loading…
Reference in a new issue