Added a placeholder text in Register

This commit is contained in:
Matthew Patrick 2022-04-24 17:47:39 +07:00
parent 58c9eac2b6
commit 02050d6077

View file

@ -10,6 +10,14 @@ class Register extends StatefulWidget {
class _RegisterState extends State<Register> {
@override
Widget build(BuildContext context) {
return Container();
return Scaffold(
backgroundColor: const Color(0xff1b1c1e),
appBar: AppBar(
title: const Text('Nekoya'),
centerTitle: true,
backgroundColor: const Color(0xff212226),
),
body: Text('Register'),
);
}
}