23 lines
516 B
Dart
23 lines
516 B
Dart
import 'package:flutter/material.dart';
|
|
import 'screens/chat_screen.dart';
|
|
|
|
void main() {
|
|
runApp(const SmartGardenApp());
|
|
}
|
|
|
|
class SmartGardenApp extends StatelessWidget {
|
|
const SmartGardenApp({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
title: 'Smart Garden',
|
|
theme: ThemeData(
|
|
primarySwatch: Colors.green,
|
|
useMaterial3: true,
|
|
),
|
|
home: const ChatScreen(),
|
|
debugShowCheckedModeBanner: false,
|
|
);
|
|
}
|
|
} |