chore: Added easy screenshot taker and new screenshots

This commit is contained in:
PartyDonut 2025-10-30 19:24:21 +01:00
parent 4483e4a1f5
commit 6212e06404
30 changed files with 254 additions and 3 deletions

View file

@ -72,12 +72,12 @@ class _SideNavigationBarState extends ConsumerState<SideNavigationBar> {
return Stack(
children: [
AdaptiveLayoutBuilder(
adaptiveLayout: AdaptiveLayout.of(context).copyWith(
AdaptiveLayout(
data: AdaptiveLayout.of(context).copyWith(
// -0.1 offset to fix single visible pixel line
sideBarWidth: (fullyExpanded ? expandedWidth : collapsedWidth) - 0.1,
),
child: (context) => widget.child,
child: widget.child,
),
FocusTraversalGroup(
policy: _RailTraversalPolicy(),