first commit

This commit is contained in:
2026-03-13 17:14:24 +00:00
commit 39c67599d1
131 changed files with 5277 additions and 0 deletions

29
lib/main.dart Normal file
View File

@@ -0,0 +1,29 @@
import 'package:flutter/material.dart';
import 'chat_screen.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'EPVChat! Clone',
theme: ThemeData(
brightness: Brightness.light,
scaffoldBackgroundColor: Colors.white,
colorScheme: const ColorScheme.light(
primary: Color(0xFF8ad5c9), // Mint
secondary: Color(0xFF57a7ed), // EPVC Light Blue
surface: Colors.white,
),
useMaterial3: true,
),
home: const ChatScreen(),
debugShowCheckedModeBanner: false,
);
}
}