import 'package:flutter/cupertino.dart'; import 'package:flutter/foundation.dart'; /// Description: pay page /// Time : 02/21/2024 Wednesday /// Author : liuyuqi.gov@msn.cn class PayPage extends StatefulWidget { const PayPage({Key? key}) : super(key: key); @override State createState() => _PayPageState(); } class _PayPageState extends State { @override Widget build(BuildContext context) { return const Placeholder(); } }