2022-04-26 11:15:38 +02:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
class PaymentBody extends StatefulWidget {
|
|
|
|
const PaymentBody({Key? key}) : super(key: key);
|
|
|
|
|
|
|
|
@override
|
|
|
|
State<PaymentBody> createState() => _PaymentBodyState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _PaymentBodyState extends State<PaymentBody> {
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Container(
|
2022-04-26 12:28:55 +02:00
|
|
|
constraints: const BoxConstraints.expand(height: 150.0),
|
|
|
|
decoration: const BoxDecoration(color: Colors.transparent),
|
2022-04-26 11:15:38 +02:00
|
|
|
child: Column(
|
|
|
|
children: [
|
|
|
|
Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
|
|
|
children: [
|
|
|
|
Image.asset(
|
|
|
|
'assets/bca.webp',
|
|
|
|
cacheHeight: 40,
|
|
|
|
cacheWidth: 100,
|
|
|
|
),
|
|
|
|
Image.asset(
|
|
|
|
'assets/bni.webp',
|
|
|
|
cacheHeight: 40,
|
|
|
|
cacheWidth: 100,
|
|
|
|
),
|
|
|
|
Image.asset(
|
|
|
|
'assets/bri.webp',
|
|
|
|
cacheHeight: 40,
|
|
|
|
cacheWidth: 100,
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
Row(),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|