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