smartfarming-mobile/kebun_pintar/lib/main.dart
2024-09-05 10:46:07 +07:00

25 lines
597 B
Dart

import 'package:flutter/material.dart';
import 'package:kebun_pintar/features/splash/view/splash_screen.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
scaffoldBackgroundColor: Colors.white,
colorScheme: ColorScheme.fromSeed(seedColor: Colors.teal),
useMaterial3: true,
),
home: const SplashScreen(),
);
}
}