Files
1356/lifetimer/lib/features/profile/presentation/profile_screen.dart
T
2026-01-03 18:35:35 +01:00

18 lines
359 B
Dart

import 'package:flutter/material.dart';
class ProfileScreen extends StatelessWidget {
const ProfileScreen({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Profile'),
),
body: const Center(
child: Text('Profile - Coming Soon'),
),
);
}
}