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(), ); } }