Skip to content

Instantly share code, notes, and snippets.

@ijoschek
Created August 25, 2019 09:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ijoschek/7c99b192f07a8bb58bc7e8613ad3abb3 to your computer and use it in GitHub Desktop.
Save ijoschek/7c99b192f07a8bb58bc7e8613ad3abb3 to your computer and use it in GitHub Desktop.
flutter_qrreader_tut
//...
class _MyHomePageState extends State<MyHomePage> {
//...
_qrCallback(String code) {
setState(() {
_camState = false;
_qrInfo = code;
});
}
_scanCode() {
setState(() {
_camState = true;
});
}
//...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment