mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-09 07:28:14 -07:00
feature: Cleaned up app bar
This commit is contained in:
parent
79310c7bf4
commit
a9cdd5c506
7 changed files with 59 additions and 69 deletions
|
|
@ -85,7 +85,11 @@ class _SideNavigationBarState extends ConsumerState<SideNavigationBar> {
|
|||
child: (context) => widget.child,
|
||||
),
|
||||
Container(
|
||||
color: Theme.of(context).colorScheme.surface.withValues(alpha: shouldExpand ? 0.95 : 0.85),
|
||||
decoration: BoxDecoration(
|
||||
borderRadius: BorderRadius.circular(12)
|
||||
.copyWith(topLeft: const Radius.circular(0), bottomLeft: const Radius.circular(0)),
|
||||
color: Theme.of(context).colorScheme.surface.withValues(alpha: shouldExpand ? 0.95 : 0.85),
|
||||
),
|
||||
width: shouldExpand ? expandedWidth : collapsedWidth,
|
||||
child: MouseRegion(
|
||||
onEnter: (value) => startTimer(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue