- 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)
21 lines
496 B
Dart
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(),
|
|
);
|
|
}
|
|
} |