Initial commit

This commit is contained in:
Yas Opisso
2025-12-12 14:31:36 -05:00
commit 83775bdc72
175 changed files with 17284 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import 'package:flutter/cupertino.dart';
class MessagesView extends StatefulWidget {
const MessagesView({super.key});
@override
State<MessagesView> createState() => _MessagesViewState();
}
class _MessagesViewState extends State<MessagesView> {
@override
Widget build(BuildContext context) {
return const Center(child: Text('MESSAGES'));
}
}