forceRedirectFocus method
Forces the app to unfocus any input fields when returning from another screen.
Implementation
void forceRedirectFocus() {
if (!wasSearchFocusedBeforeNavigation && mounted) {
FocusScope.of(context).unfocus();
}
}
Forces the app to unfocus any input fields when returning from another screen.
void forceRedirectFocus() {
if (!wasSearchFocusedBeforeNavigation && mounted) {
FocusScope.of(context).unfocus();
}
}