mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 16:56:19 +01:00
Fix scrollbar thumb not using theme color
This commit is contained in:
parent
a2fc045834
commit
20095ffb4e
1 changed files with 2 additions and 1 deletions
|
@ -167,7 +167,8 @@ class _HomePhotosState extends State<HomePhotos>
|
|||
bottomOffset: _calcBottomAppBarExtent(context),
|
||||
labelTextBuilder: (_) => _buildScrollLabel(context),
|
||||
labelPadding: const EdgeInsets.symmetric(horizontal: 40),
|
||||
backgroundColor: Theme.of(context).colorScheme.inverseSurface,
|
||||
backgroundColor: Theme.of(context)
|
||||
.elevate(Theme.of(context).colorScheme.inverseSurface, 3),
|
||||
enabled: _isScrollbarVisible,
|
||||
heightScrollThumb: 60,
|
||||
child: ScrollConfiguration(
|
||||
|
|
Loading…
Reference in a new issue