Merge branch 'main' into feature/routing_fixes

This commit is contained in:
Shawn
2024-01-22 15:36:08 -07:00
8 changed files with 85 additions and 57 deletions

View File

@ -232,7 +232,9 @@ class _CustomFocusBuilderState extends State<_CustomFocusBuilder> {
void _handleFocusChanged() {
widget.onFocusChanged?.call(_focusNode.hasFocus);
setState(() {});
if (mounted) {
setState(() {});
}
}
@override