🐛 Fix attachment fullscreen in dark mode
This commit is contained in:
parent
7800a70ef2
commit
7bfbd37b76
@ -93,11 +93,14 @@ class _AttachmentListFullScreenState extends State<AttachmentListFullScreen> {
|
||||
child: IgnorePointer(
|
||||
child: Container(
|
||||
height: 300,
|
||||
decoration: const BoxDecoration(
|
||||
decoration: BoxDecoration(
|
||||
gradient: LinearGradient(
|
||||
begin: Alignment.bottomCenter,
|
||||
end: Alignment.topCenter,
|
||||
colors: [Color(0xFFFFFFFF), Color(0x00FFFFFF)],
|
||||
colors: [
|
||||
Theme.of(context).colorScheme.surface,
|
||||
Theme.of(context).colorScheme.surface.withOpacity(0),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
|
Loading…
Reference in New Issue
Block a user