This commit is contained in:
Matthew Patrick 2022-04-24 23:58:09 +07:00
parent 134475f4a8
commit b91487e90d

View file

@ -21,3 +21,24 @@ 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),
// ),
// ),
// ),