Skip to content

Instantly share code, notes, and snippets.

@PeterHdd
Created February 17, 2020 08:29
Show Gist options
  • Save PeterHdd/cda39de2c8975fd021462f64b202e7e8 to your computer and use it in GitHub Desktop.
Save PeterHdd/cda39de2c8975fd021462f64b202e7e8 to your computer and use it in GitHub Desktop.
article
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