pay_page.dart 470 B

12345678910111213141516171819
  1. import 'package:flutter/cupertino.dart';
  2. import 'package:flutter/foundation.dart';
  3. /// Description: pay page
  4. /// Time : 02/21/2024 Wednesday
  5. /// Author : liuyuqi.gov@msn.cn
  6. class PayPage extends StatefulWidget {
  7. const PayPage({Key? key}) : super(key: key);
  8. @override
  9. State<PayPage> createState() => _PayPageState();
  10. }
  11. class _PayPageState extends State<PayPage> {
  12. @override
  13. Widget build(BuildContext context) {
  14. return const Placeholder();
  15. }
  16. }