feat:mini apps: adicione telas placeholder para todos os oito mini apps (Notícias Trends, Campo Minado, Calculadora, Bloco de Notas, Conversor de Moedas, Criptomoedas, Jogo do Dinossauro, Jogo da Memória) e atualize navegação

This commit is contained in:
Carlos
2026-07-11 02:25:35 +02:00
parent bb16bebe46
commit ca81d99c35
10 changed files with 248 additions and 59 deletions
+35 -23
View File
@@ -14,42 +14,54 @@ class MiniApp {
});
}
// Sample list of mini apps (placeholders for now)
// List of mini apps for the launcher
List<MiniApp> miniApps = [
MiniApp(
title: 'Notícias',
icon: Icons.newspaper,
title: 'Notícias Trends',
icon: Icons.trending_up,
color: Colors.blue,
route: '/news',
),
MiniApp(
title: 'Clima',
icon: Icons.wb_sunny,
color: Colors.orange,
route: '/weather',
title: 'Campo Minado',
icon: Icons.gamepad,
color: Colors.deepPurple,
route: '/minesweeper',
),
MiniApp(
title: 'Notas',
title: 'Calculadora',
icon: Icons.calculate,
color: Colors.orange,
route: '/calculator',
),
MiniApp(
title: 'Bloco de Notas',
icon: Icons.note,
color: Colors.green,
route: '/notes',
),
MiniApp(
title: 'Calendário',
icon: Icons.calendar_today,
color: Colors.red,
route: '/calendar',
),
MiniApp(
title: 'Calculadora',
icon: Icons.calculate,
color: Colors.purple,
route: '/calculator',
),
MiniApp(
title: 'Galeria',
icon: Icons.photo_library,
title: 'Conversor de Moedas',
icon: Icons.currency_exchange,
color: Colors.teal,
route: '/gallery',
route: '/currency',
),
MiniApp(
title: 'Criptomoedas',
icon: Icons.currency_bitcoin,
color: Colors.amber,
route: '/crypto',
),
MiniApp(
title: 'Jogo do Dinossauro',
icon: Icons.directions_run,
color: Colors.red,
route: '/dino',
),
MiniApp(
title: 'Jogo da Memória',
icon: Icons.memory,
color: Colors.indigo,
route: '/memory',
),
];