1
This commit is contained in:
18
lib/app.dart
Normal file
18
lib/app.dart
Normal file
@@ -0,0 +1,18 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'config/theme.dart';
|
||||
import 'screens/chat_screen.dart';
|
||||
|
||||
class AIChatApp extends StatelessWidget {
|
||||
const AIChatApp({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return MaterialApp(
|
||||
title: 'AI Chat Assistant',
|
||||
theme: AppTheme.lightTheme,
|
||||
darkTheme: AppTheme.darkTheme,
|
||||
themeMode: ThemeMode.system,
|
||||
home: const ChatScreen(),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user