Last active
June 23, 2024 22:30
-
-
Save Shakil-Shahadat/5ad4c117703e614310eeb04dff1ade5e to your computer and use it in GitHub Desktop.
✓ New Page in Dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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