feat: implement AI recipe suggestions; add endpoint and UI for generating suggestions based on inventory
Test Suite / test (24.15.0) (push) Has been cancelled

This commit is contained in:
Nils-Johan Gynther
2026-05-05 14:15:28 +02:00
parent 3ea5a4778f
commit ce20b1dd07
9 changed files with 471 additions and 19 deletions
@@ -92,11 +92,22 @@ class RecipesScreen extends ConsumerWidget {
}
},
),
Positioned(
right: 16,
bottom: 80,
child: FloatingActionButton.small(
tooltip: 'AI-receptförslag',
heroTag: 'ai_suggestions',
onPressed: () => context.push('/recipes/ai-suggestions'),
child: const Icon(Icons.auto_awesome),
),
),
Positioned(
right: 16,
bottom: 16,
child: FloatingActionButton(
tooltip: context.l10n.recipesNewTooltip,
heroTag: 'new_recipe',
onPressed: () => context.push('/recipes/create'),
child: const Icon(Icons.add),
),