Browse Source

Fixed hot reload not working on Android

flutter-beta
Julian Steenbakker 5 years ago
committed by GitHub
parent
commit
ed885c8a7e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      example/README.md

+ 1
- 2
example/README.md View File

@@ -50,9 +50,8 @@ class _QRViewExampleState extends State<QRViewExample> {
super.reassemble();
if (Platform.isAndroid) {
controller.pauseCamera();
} else if (Platform.isIOS) {
controller.resumeCamera();
}
controller.resumeCamera();
}

@override


Loading…
Cancel
Save