first commit
This commit is contained in:
29
lib/main.dart
Normal file
29
lib/main.dart
Normal 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,
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user