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 createState() => _PaymentState(); } class _PaymentState extends State { @override Widget build(BuildContext context) { return Scaffold( backgroundColor: const Color(0xff1b1c1e), appBar: AppBar( title: const Text('Payment'), centerTitle: true, backgroundColor: const Color(0xff212226), ), body: const PaymentBody()); } }