mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-02 06:46:22 +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),
|
bottomOffset: _calcBottomAppBarExtent(context),
|
||||||
labelTextBuilder: (_) => _buildScrollLabel(context),
|
labelTextBuilder: (_) => _buildScrollLabel(context),
|
||||||
labelPadding: const EdgeInsets.symmetric(horizontal: 40),
|
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,
|
enabled: _isScrollbarVisible,
|
||||||
heightScrollThumb: 60,
|
heightScrollThumb: 60,
|
||||||
child: ScrollConfiguration(
|
child: ScrollConfiguration(
|
||||||
|
|
Loading…
Reference in a new issue