Skip to content

Instantly share code, notes, and snippets.

@Shakil-Shahadat
Last active September 17, 2021 11:00
Show Gist options
  • Save Shakil-Shahadat/5ad4c117703e614310eeb04dff1ade5e to your computer and use it in GitHub Desktop.
Save Shakil-Shahadat/5ad4c117703e614310eeb04dff1ade5e to your computer and use it in GitHub Desktop.
New Page in Dart
class newPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(''),
centerTitle: true,
), // AppBar
body: SingleChildScrollView(
child: Column(
children: <Widget>[
], // <Widget>
), // Column
), // body / SingleChildScrollView
); // Scaffold
} // Widget
} // newPage
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment