fix: Make sure the textfield is unfocused before opening the camera

onboarding
Christian Pauly 4 years ago
parent 8bcfbfa30b
commit 51a521c510

@ -290,7 +290,8 @@ class ChatController extends State<Chat> {
} }
void openCameraAction() async { void openCameraAction() async {
inputFocus.unfocus(); // Make sure the textfield is unfocused before opening the camera
FocusScope.of(context).requestFocus(FocusNode());
final file = await ImagePicker().getImage(source: ImageSource.camera); final file = await ImagePicker().getImage(source: ImageSource.camera);
if (file == null) return; if (file == null) return;
final bytes = await file.readAsBytes(); final bytes = await file.readAsBytes();

Loading…
Cancel
Save