18 lines
380 B
Dart
18 lines
380 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:chatting/contact_list_page.dart';
|
|
|
|
|
|
class ChattinFriendPage extends StatefulWidget {
|
|
@override
|
|
_ChattinFriendPageState createState() => _ChattinFriendPageState();
|
|
}
|
|
|
|
class _ChattinFriendPageState extends State<ChattinFriendPage> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return ContactListPage();
|
|
}
|
|
}
|
|
|
|
|