12345678910111213141516171819 |
- 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<PayPage> createState() => _PayPageState();
- }
- class _PayPageState extends State<PayPage> {
- @override
- Widget build(BuildContext context) {
- return const Placeholder();
- }
- }
|