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
|
@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(
|
||||||
|
|
|
@ -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());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue