This commit is contained in:
Matthew Patrick 2022-04-25 20:23:05 +07:00
parent e4caeef8ae
commit 47dbb72567

View file

@ -13,7 +13,7 @@ class _RegisterState extends State<Register> {
return Scaffold(
backgroundColor: const Color(0xff1b1c1e),
appBar: AppBar(
title: const Text('Nekoya'),
title: const Text('Register'),
centerTitle: true,
backgroundColor: const Color(0xff212226),
),
@ -21,24 +21,3 @@ class _RegisterState extends State<Register> {
);
}
}
// Card(
// color: const Color(0xff212226),
// shape: RoundedRectangleBorder(
// borderRadius: BorderRadius.circular(10),
// ),
// child: InkWell(
// onTap: () {
// print("Card tapped");
// },
// borderRadius: BorderRadius.circular(10),
// splashColor: const Color(0xff8B0000),
// highlightColor: const Color(0xff8B0000),
// child: Container(
// child: Text("tes", style: TextStyle(color: Colors.white)),
// padding: const EdgeInsets.fromLTRB(20, 10, 20, 10),
// ),
// ),
// ),