mirror of
https://github.com/Dvorinka/1356.git
synced 2026-06-04 12:02:56 +00:00
18 lines
359 B
Dart
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'),
|
|
),
|
|
);
|
|
}
|
|
}
|