17 lines
363 B
Dart
17 lines
363 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class ProfileView extends StatefulWidget {
|
|
const ProfileView({super.key});
|
|
|
|
@override
|
|
State<ProfileView> createState() => _ProfileViewState();
|
|
}
|
|
|
|
class _ProfileViewState extends State<ProfileView> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Center(
|
|
child: Text("Profile View"),
|
|
);
|
|
}
|
|
} |