Cleanup code

This commit is contained in:
Moe Poi ~ 2022-04-26 17:28:55 +07:00
parent c567a09ca1
commit 564b70a21b
2 changed files with 3 additions and 3 deletions

View file

@ -11,8 +11,8 @@ class _PaymentBodyState extends State<PaymentBody> {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Container( return Container(
constraints: BoxConstraints.expand(height: 150.0), constraints: const BoxConstraints.expand(height: 150.0),
decoration: BoxDecoration(color: Colors.transparent), decoration: const BoxDecoration(color: Colors.transparent),
child: Column( child: Column(
children: [ children: [
Row( Row(

View file

@ -18,6 +18,6 @@ class _PaymentState extends State<Payment> {
centerTitle: true, centerTitle: true,
backgroundColor: const Color(0xff212226), backgroundColor: const Color(0xff212226),
), ),
body: PaymentBody()); body: const PaymentBody());
} }
} }