mirror of
https://github.com/openfoodfacts/smooth-app.git
synced 2025-08-06 18:25:11 +08:00

Impacted files: * `app_en.arb`: added the "next n questions" label for hunger games * `app_fr.arb`: added the "next n questions" label for hunger games * `congrats.dart`: "continue" button label as a String parameter * `product_questions_query.dart`: added a `count` parameter * `product_questions_widget.dart`: added the `count` parameter * `question_page.dart`: different `count` parameters; set the "continue" button label * `questions_query.dart`: added a `count` parameter * `random_questions_query.dart`: added a `count` parameter * `robotoff_insight_helper.dart`: added the `count` parameter
13 lines
314 B
Dart
13 lines
314 B
Dart
import 'package:openfoodfacts/openfoodfacts.dart';
|
|
import 'package:smooth_app/database/local_database.dart';
|
|
|
|
/// Robotoff questions helper.
|
|
abstract class QuestionsQuery {
|
|
const QuestionsQuery();
|
|
|
|
Future<List<RobotoffQuestion>> getQuestions(
|
|
final LocalDatabase localDatabase,
|
|
final int count,
|
|
);
|
|
}
|