2022-04-26 11:15:38 +02:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:nekoya_flutter/components/payment_body.dart';
|
|
|
|
|
|
|
|
class Payment extends StatefulWidget {
|
|
|
|
const Payment({Key? key}) : super(key: key);
|
|
|
|
|
|
|
|
@override
|
|
|
|
State<Payment> createState() => _PaymentState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _PaymentState extends State<Payment> {
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Scaffold(
|
|
|
|
backgroundColor: const Color(0xff1b1c1e),
|
|
|
|
appBar: AppBar(
|
|
|
|
title: const Text('Payment'),
|
|
|
|
centerTitle: true,
|
|
|
|
backgroundColor: const Color(0xff212226),
|
|
|
|
),
|
2022-04-26 12:28:55 +02:00
|
|
|
body: const PaymentBody());
|
2022-04-26 11:15:38 +02:00
|
|
|
}
|
|
|
|
}
|