Skip to content

Instantly share code, notes, and snippets.

@redbluenat
Created March 31, 2019 16:45
Show Gist options
  • Save redbluenat/3c76983717eaf1bfad8ed4b2e4988e88 to your computer and use it in GitHub Desktop.
Save redbluenat/3c76983717eaf1bfad8ed4b2e4988e88 to your computer and use it in GitHub Desktop.
Widget captureControlRowWidget() {
return Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
mainAxisSize: MainAxisSize.max,
children: <Widget>[
IconButton(
icon: const Icon(Icons.camera_alt),
color: Colors.blue,
onPressed: controller != null && controller.value.isInitialized
? onTakePictureButtonPressed
: null,
),
],
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment