import 'package:flutter/material.dart'; class UserPage extends StatefulWidget { const UserPage({Key? key}) : super(key: key); @override _UserPageState createState() => _UserPageState(); } class _UserPageState extends State { @override Widget build(BuildContext context) { return Container(); } }