feat: Add volume indicator and scroll handles on entire screen (#443)

Co-authored-by: PartyDonut <PartyDonut@users.noreply.github.com>
This commit is contained in:
PartyDonut 2025-08-09 10:19:53 +02:00 committed by GitHub
parent 715e707bb6
commit d0d6a2ffa6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 191 additions and 95 deletions

View file

@ -44,7 +44,7 @@ class _InputHandlerState<T> extends State<InputHandler<T>> {
focusNode.requestFocus();
}
},
onKeyEvent: (node, event) => _onKey(event),
onKeyEvent: widget.onKeyEvent ?? (node, event) => _onKey(event),
child: widget.child,
);
}