You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
419 B
17 lines
419 B
import 'package:flutter/material.dart';
|
|
|
|
// TODO: 点击对方头像,进入此用户详情页面
|
|
class UserProfilePage extends StatefulWidget {
|
|
UserProfilePage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
_UserProfilePageState createState() => _UserProfilePageState();
|
|
}
|
|
|
|
class _UserProfilePageState extends State<UserProfilePage> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container();
|
|
}
|
|
}
|