import 'package:flutter/material.dart'; // TODO: 点击对方头像,进入此用户详情页面 class UserProfilePage extends StatefulWidget { UserProfilePage({Key? key}) : super(key: key); @override _UserProfilePageState createState() => _UserProfilePageState(); } class _UserProfilePageState extends State { @override Widget build(BuildContext context) { return Container(); } }