import 'package:flutter/material.dart'; class UserSettingSafeGooglePage extends StatelessWidget { const UserSettingSafeGooglePage({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text('UserSettingSafeGooglePage'), ), body: Container(), ); } }