我的二维码

This commit is contained in:
2022-10-31 11:58:17 +08:00
parent 55a1801895
commit b7f0fe3ac8
5 changed files with 59 additions and 18 deletions

View File

@@ -0,0 +1,20 @@
import 'package:flutter/material.dart';
class UserServeGooglePage extends StatefulWidget {
const UserServeGooglePage({Key? key}) : super(key: key);
@override
State<UserServeGooglePage> createState() => _UserServeGooglePageState();
}
class _UserServeGooglePageState extends State<UserServeGooglePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('谷歌验证器'),
),
body: Container(),
);
}
}