主页添加底栏
This commit is contained in:
17
lib/pages/myfriends/index.dart
Normal file
17
lib/pages/myfriends/index.dart
Normal file
@@ -0,0 +1,17 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class MyFriendsView extends StatefulWidget {
|
||||
const MyFriendsView({super.key});
|
||||
|
||||
@override
|
||||
State<MyFriendsView> createState() => _MyFriendsViewState();
|
||||
}
|
||||
|
||||
class _MyFriendsViewState extends State<MyFriendsView> {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Center(
|
||||
child: Text("MyFriends View"),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user