Skip to content

Instantly share code, notes, and snippets.

@vijayinyoutube
Created June 27, 2022 18:12
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 vijayinyoutube/45a43d973540e2780abb09e1f43e9958 to your computer and use it in GitHub Desktop.
Save vijayinyoutube/45a43d973540e2780abb09e1f43e9958 to your computer and use it in GitHub Desktop.
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: ElevatedButton(
onPressed: () {},
child: const Text('Save Data'),
),
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment