Cleanup code
This commit is contained in:
parent
c567a09ca1
commit
564b70a21b
2 changed files with 3 additions and 3 deletions
|
@ -11,8 +11,8 @@ class _PaymentBodyState extends State<PaymentBody> {
|
|||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Container(
|
||||
constraints: BoxConstraints.expand(height: 150.0),
|
||||
decoration: BoxDecoration(color: Colors.transparent),
|
||||
constraints: const BoxConstraints.expand(height: 150.0),
|
||||
decoration: const BoxDecoration(color: Colors.transparent),
|
||||
child: Column(
|
||||
children: [
|
||||
Row(
|
||||
|
|
|
@ -18,6 +18,6 @@ class _PaymentState extends State<Payment> {
|
|||
centerTitle: true,
|
||||
backgroundColor: const Color(0xff212226),
|
||||
),
|
||||
body: PaymentBody());
|
||||
body: const PaymentBody());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue