import 'package:flutter/material.dart'; import 'features/recycling_guide/presentation/screens/recycling_guide_screen.dart'; import 'theme/app_theme.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { return MaterialApp( debugShowCheckedModeBanner: false, title: 'Basura App', theme: AppTheme.lightTheme, home: const RecyclingGuideScreen(), ); } }