17 lines
377 B
Dart
17 lines
377 B
Dart
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"),
|
|
);
|
|
}
|
|
} |