chatting/lib/chatting_friend.dart

19 lines
356 B
Dart
Raw Normal View History

2020-06-06 10:06:54 +00:00
import 'package:flutter/material.dart';
class ChattinFriendPage extends StatefulWidget {
@override
_ChattinFriendPageState createState() => _ChattinFriendPageState();
}
class _ChattinFriendPageState extends State<ChattinFriendPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Text("好友"),
);
}
}