Skip to content

Instantly share code, notes, and snippets.

@redbluenat
Created March 24, 2019 21:41
Show Gist options
  • Save redbluenat/6500ba02d2d14c5cc9b80f33c1050274 to your computer and use it in GitHub Desktop.
Save redbluenat/6500ba02d2d14c5cc9b80f33c1050274 to your computer and use it in GitHub Desktop.
Widget editCaptureControlRowWidget() {
return Padding(
padding: const EdgeInsets.only(top: 5),
child: Align(
alignment: Alignment.topCenter,
child: IconButton(
icon: const Icon(Icons.camera_alt),
color: Colors.blue,
onPressed: () => setState(() {
showCamera = true;
}),
),
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment