Created
February 17, 2020 08:29
-
-
Save PeterHdd/cda39de2c8975fd021462f64b202e7e8 to your computer and use it in GitHub Desktop.
article
This file contains hidden or 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 _MyHomePageState extends State<MyHomePage> { | |
@override | |
Widget build(BuildContext context) { | |
return Scaffold( | |
appBar: AppBar( | |
title: Text(widget.title), | |
), | |
body: Center( | |
child: SingleChildScrollView(child: Column( | |
mainAxisAlignment: MainAxisAlignment.center, | |
children: <Widget>[ | |
Text("Please Register Your Pet ", | |
style: TextStyle( | |
fontWeight: FontWeight.w200, | |
fontSize: 30, | |
fontFamily: 'Roboto', | |
fontStyle: FontStyle.italic)), | |
RegisterPet(), | |
]),) | |
), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment