Files
hackathon-acapulquitos-boys…/lib/main.dart
Alan Alonso bda677df89 refactor: consolidate codebase into clean architecture
- Remove duplicate features structure from basura_app
- Migrate recycling_guide feature to lib/
- Update main.dart to use new architecture
- Clean up old views structure
- Remove temporary directories (basura_app, basura_backend, wiki_hackathon)
2026-05-22 19:13:03 -06:00

21 lines
496 B
Dart

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