import 'package:flutter/material.dart'; import 'quiz_question_screen.dart'; import 'quiz_result.dart'; // Quiz 1: Problemas respiratórios (Yes/No) class Quiz1Screen extends StatelessWidget { const Quiz1Screen({super.key, this.currentScore = 0, this.scopeId}); final int currentScore; final String? scopeId; @override Widget build(BuildContext context) { return QuizQuestionScreen( title: 'Quiz 1/23', category: 'Saúde respiratória', categoryIcon: Icons.medical_information_rounded, fallbackIcon: Icons.medical_information_rounded, fallbackColor: const Color(0xFFFF55A7), question: 'O seu filho/a tem problemas respiratórios diagnosticados?', answers: const [ QuizAnswer( title: 'Sim', description: 'Problemas respiratórios diagnosticados', weight: 2, value: 'sim', ), QuizAnswer( title: 'Não', description: 'Sem problemas respiratórios diagnosticados', weight: 1, value: 'nao', ), QuizAnswer( title: 'Não sei', description: 'Não tenho a certeza', weight: 1, value: 'nao_sei', helpVideoId: 6, ), ], currentScore: currentScore, nextRoute: (context, nextScore) => MaterialPageRoute( builder: (_) => Quiz2Screen(currentScore: nextScore, scopeId: scopeId), ), answerType: QuizAnswerType.yesNo, showBackButton: false, ); } } // Quiz 2: Respira pela boca (Yes/No) class Quiz2Screen extends StatelessWidget { const Quiz2Screen({super.key, required this.currentScore, this.scopeId}); final int currentScore; final String? scopeId; @override Widget build(BuildContext context) { return QuizQuestionScreen( title: 'Quiz 2/23', category: 'Respiração', categoryIcon: Icons.air_rounded, fallbackIcon: Icons.air_rounded, fallbackColor: const Color(0xFF2F9E94), question: 'O seu filho/a respira habitualmente pela boca?', answers: const [ QuizAnswer( title: 'Sim', description: 'Respira habitualmente pela boca', weight: 2, value: 'sim', ), QuizAnswer( title: 'Não', description: 'Não respira habitualmente pela boca', weight: 1, value: 'nao', ), QuizAnswer( title: 'Não sei', description: 'Não tenho a certeza', weight: 1, value: 'nao_sei', helpVideoId: 10, ), ], currentScore: currentScore, nextRoute: (context, nextScore) => MaterialPageRoute( builder: (_) => Quiz3Screen(currentScore: nextScore, scopeId: scopeId), ), answerType: QuizAnswerType.yesNo, showBackButton: true, ); } } // Quiz 3: Ressonar (Yes/No) class Quiz3Screen extends StatelessWidget { const Quiz3Screen({super.key, required this.currentScore, this.scopeId}); final int currentScore; final String? scopeId; @override Widget build(BuildContext context) { return QuizQuestionScreen( title: 'Quiz 3/23', category: 'Sono', categoryIcon: Icons.bedtime_rounded, fallbackIcon: Icons.bedtime_rounded, fallbackColor: const Color(0xFF8E7CC3), question: 'O seu filho/a ressona habitualmente durante a noite?', answers: const [ QuizAnswer( title: 'Sim', description: 'Ressonar habitualmente durante a noite', weight: 2, value: 'sim', ), QuizAnswer( title: 'Não', description: 'Não ressona habitualmente', weight: 1, value: 'nao', ), QuizAnswer( title: 'Não sei', description: 'Não tenho a certeza', weight: 1, value: 'nao_sei', helpVideoId: 8, ), ], currentScore: currentScore, nextRoute: (context, nextScore) => MaterialPageRoute( builder: (_) => Quiz4Screen(currentScore: nextScore, scopeId: scopeId), ), answerType: QuizAnswerType.yesNo, showBackButton: true, ); } } // Quiz 4: Nariz tapado (Yes/No) class Quiz4Screen extends StatelessWidget { const Quiz4Screen({super.key, required this.currentScore, this.scopeId}); final int currentScore; final String? scopeId; @override Widget build(BuildContext context) { return QuizQuestionScreen( title: 'Quiz 4/23', category: 'Respiração', categoryIcon: Icons.sick_rounded, fallbackIcon: Icons.sick_rounded, fallbackColor: const Color(0xFFFF55A7), question: 'O seu filho/a sente habitualmente o nariz "tapado"?', answers: const [ QuizAnswer( title: 'Sim', description: 'Sente habitualmente o nariz tapado', weight: 2, value: 'sim', ), QuizAnswer( title: 'Não', description: 'Não sente habitualmente o nariz tapado', weight: 1, value: 'nao', ), QuizAnswer( title: 'Não sei', description: 'Não tenho a certeza', weight: 1, value: 'nao_sei', helpVideoId: 1, ), ], currentScore: currentScore, nextRoute: (context, nextScore) => MaterialPageRoute( builder: (_) => Quiz5Screen(currentScore: nextScore, scopeId: scopeId), ), answerType: QuizAnswerType.yesNo, showBackButton: true, ); } } // Quiz 5: Interrupções respiração (Yes/No) class Quiz5Screen extends StatelessWidget { const Quiz5Screen({super.key, required this.currentScore, this.scopeId}); final int currentScore; final String? scopeId; @override Widget build(BuildContext context) { return QuizQuestionScreen( title: 'Quiz 5/23', category: 'Sono', categoryIcon: Icons.nights_stay_rounded, fallbackIcon: Icons.nights_stay_rounded, fallbackColor: const Color(0xFF8E7CC3), question: 'Durante o sono, o seu filho/a tem habitualmente interrupções da respiração?', answers: const [ QuizAnswer( title: 'Sim', description: 'Tem habitualmente interrupções da respiração durante o sono', weight: 2, value: 'sim', ), QuizAnswer( title: 'Não', description: 'Não tem interrupções da respiração durante o sono', weight: 1, value: 'nao', ), QuizAnswer( title: 'Não sei', description: 'Não tenho a certeza', weight: 1, value: 'nao_sei', helpVideoId: 7, ), ], currentScore: currentScore, nextRoute: (context, nextScore) => MaterialPageRoute( builder: (_) => Quiz6Screen(currentScore: nextScore, scopeId: scopeId), ), answerType: QuizAnswerType.yesNo, showBackButton: true, ); } } // Quiz 6: Range os dentes (Yes/No) class Quiz6Screen extends StatelessWidget { const Quiz6Screen({super.key, required this.currentScore, this.scopeId}); final int currentScore; final String? scopeId; @override Widget build(BuildContext context) { return QuizQuestionScreen( title: 'Quiz 6/23', category: 'Hábitos noturnos', categoryIcon: Icons.nights_stay_rounded, fallbackIcon: Icons.nights_stay_rounded, fallbackColor: const Color(0xFF2F9E94), question: 'O seu filho/a range os dentes com frequência?', answers: const [ QuizAnswer( title: 'Sim', description: 'Range os dentes com frequência', weight: 2, value: 'sim', ), QuizAnswer( title: 'Não', description: 'Não range os dentes com frequência', weight: 1, value: 'nao', ), ], currentScore: currentScore, nextRoute: (context, nextScore) => MaterialPageRoute( builder: (_) => Quiz7Screen(currentScore: nextScore, scopeId: scopeId), ), answerType: QuizAnswerType.yesNo, showBackButton: true, ); } } // Quiz 7: Alergias sazonais (Yes/No) class Quiz7Screen extends StatelessWidget { const Quiz7Screen({super.key, required this.currentScore, this.scopeId}); final int currentScore; final String? scopeId; @override Widget build(BuildContext context) { return QuizQuestionScreen( title: 'Quiz 7/23', category: 'Saúde geral', categoryIcon: Icons.local_florist_rounded, fallbackIcon: Icons.local_florist_rounded, fallbackColor: const Color(0xFFFF55A7), question: 'O seu filho/a habitualmente tem alergias sazonais?', answers: const [ QuizAnswer( title: 'Sim', description: 'Habitualmente tem alergias sazonais', weight: 2, value: 'sim', ), QuizAnswer( title: 'Não', description: 'Não tem alergias sazonais', weight: 1, value: 'nao', ), QuizAnswer( title: 'Não sei', description: 'Não tenho a certeza', weight: 1, value: 'nao_sei', helpVideoId: 2, ), ], currentScore: currentScore, nextRoute: (context, nextScore) => MaterialPageRoute( builder: (_) => Quiz8Screen(currentScore: nextScore, scopeId: scopeId), ), answerType: QuizAnswerType.yesNo, showBackButton: true, ); } } // Quiz 8: Saliva seca (Yes/No) class Quiz8Screen extends StatelessWidget { const Quiz8Screen({super.key, required this.currentScore, this.scopeId}); final int currentScore; final String? scopeId; @override Widget build(BuildContext context) { return QuizQuestionScreen( title: 'Quiz 8/23', category: 'Sono', categoryIcon: Icons.water_drop_rounded, fallbackIcon: Icons.water_drop_rounded, fallbackColor: const Color(0xFF8E7CC3), question: 'O seu filho/a acorda com saliva seca na cara ou na almofada?', answers: const [ QuizAnswer( title: 'Sim', description: 'Acorda com saliva seca na cara ou na almofada', weight: 2, value: 'sim', ), QuizAnswer( title: 'Não', description: 'Não acorda com saliva seca', weight: 1, value: 'nao', ), QuizAnswer( title: 'Não sei', description: 'Não tenho a certeza', weight: 1, value: 'nao_sei', helpVideoId: 9, ), ], currentScore: currentScore, nextRoute: (context, nextScore) => MaterialPageRoute( builder: (_) => Quiz9Screen(currentScore: nextScore, scopeId: scopeId), ), answerType: QuizAnswerType.yesNo, showBackButton: true, ); } } // Quiz 9: Otites (Yes/No) class Quiz9Screen extends StatelessWidget { const Quiz9Screen({super.key, required this.currentScore, this.scopeId}); final int currentScore; final String? scopeId; @override Widget build(BuildContext context) { return QuizQuestionScreen( title: 'Quiz 9/23', category: 'Saúde geral', categoryIcon: Icons.hearing_rounded, fallbackIcon: Icons.hearing_rounded, fallbackColor: const Color(0xFF2F9E94), question: 'O seu filho/a teve ou costuma ter com frequência otites?', answers: const [ QuizAnswer( title: 'Sim', description: 'Teve ou costuma ter com frequência otites', weight: 2, value: 'sim', ), QuizAnswer( title: 'Não', description: 'Não teve ou não costuma ter otites', weight: 1, value: 'nao', ), QuizAnswer( title: 'Não sei', description: 'Não tenho a certeza', weight: 1, value: 'nao_sei', helpVideoId: 3, ), ], currentScore: currentScore, nextRoute: (context, nextScore) => MaterialPageRoute( builder: (_) => Quiz10Screen(currentScore: nextScore, scopeId: scopeId), ), answerType: QuizAnswerType.yesNo, showBackButton: true, ); } } // Quiz 10: Amigdalites (Yes/No) class Quiz10Screen extends StatelessWidget { const Quiz10Screen({super.key, required this.currentScore, this.scopeId}); final int currentScore; final String? scopeId; @override Widget build(BuildContext context) { return QuizQuestionScreen( title: 'Quiz 10/23', category: 'Saúde geral', categoryIcon: Icons.healing_rounded, fallbackIcon: Icons.healing_rounded, fallbackColor: const Color(0xFFFF55A7), question: 'O seu filho/a teve ou costuma ter com frequência amigdalites?', answers: const [ QuizAnswer( title: 'Sim', description: 'Teve ou costuma ter com frequência amigdalites', weight: 2, value: 'sim', ), QuizAnswer( title: 'Não', description: 'Não teve ou não costuma ter amigdalites', weight: 1, value: 'nao', ), QuizAnswer( title: 'Não sei', description: 'Não tenho a certeza', weight: 1, value: 'nao_sei', helpVideoId: 4, ), ], currentScore: currentScore, nextRoute: (context, nextScore) => MaterialPageRoute( builder: (_) => Quiz11Screen(currentScore: nextScore, scopeId: scopeId), ), answerType: QuizAnswerType.yesNo, showBackButton: true, ); } } // Quiz 11: Bronquiolites (Yes/No) class Quiz11Screen extends StatelessWidget { const Quiz11Screen({super.key, required this.currentScore, this.scopeId}); final int currentScore; final String? scopeId; @override Widget build(BuildContext context) { return QuizQuestionScreen( title: 'Quiz 11/23', category: 'Saúde respiratória', categoryIcon: Icons.air_rounded, fallbackIcon: Icons.air_rounded, fallbackColor: const Color(0xFF2F9E94), question: 'O seu filho/a teve ou costuma ter com frequência bronquiolites?', answers: const [ QuizAnswer( title: 'Sim', description: 'Teve ou costuma ter com frequência bronquiolites', weight: 2, value: 'sim', ), QuizAnswer( title: 'Não', description: 'Não teve ou não costuma ter bronquiolites', weight: 1, value: 'nao', ), QuizAnswer( title: 'Não sei', description: 'Não tenho a certeza', weight: 1, value: 'nao_sei', helpVideoId: 5, ), ], currentScore: currentScore, nextRoute: (context, nextScore) => MaterialPageRoute( builder: (_) => Quiz12Screen(currentScore: nextScore, scopeId: scopeId), ), answerType: QuizAnswerType.yesNo, showBackButton: true, ); } } // Quiz 12: Dificuldades a mastigar (Yes/No) class Quiz12Screen extends StatelessWidget { const Quiz12Screen({super.key, required this.currentScore, this.scopeId}); final int currentScore; final String? scopeId; @override Widget build(BuildContext context) { return QuizQuestionScreen( title: 'Quiz 12/23', category: 'Hábitos alimentares', categoryIcon: Icons.restaurant_rounded, fallbackIcon: Icons.restaurant_rounded, fallbackColor: const Color(0xFFFF55A7), question: 'O seu filho/a apresenta dificuldades a mastigar?', answers: const [ QuizAnswer( title: 'Sim', description: 'Apresenta dificuldades a mastigar', weight: 2, value: 'sim', ), QuizAnswer( title: 'Não', description: 'Não apresenta dificuldades a mastigar', weight: 1, value: 'nao', ), ], currentScore: currentScore, nextRoute: (context, nextScore) => MaterialPageRoute( builder: (_) => Quiz13Screen(currentScore: nextScore, scopeId: scopeId), ), answerType: QuizAnswerType.yesNo, showBackButton: true, ); } } // Quiz 13: Lento a comer (Yes/No) class Quiz13Screen extends StatelessWidget { const Quiz13Screen({super.key, required this.currentScore, this.scopeId}); final int currentScore; final String? scopeId; @override Widget build(BuildContext context) { return QuizQuestionScreen( title: 'Quiz 13/23', category: 'Hábitos alimentares', categoryIcon: Icons.schedule_rounded, fallbackIcon: Icons.schedule_rounded, fallbackColor: const Color(0xFF2F9E94), question: 'O seu filho/a habitualmente é lento a comer?', answers: const [ QuizAnswer( title: 'Sim', description: 'Habitualmente é lento a comer', weight: 2, value: 'sim', ), QuizAnswer( title: 'Não', description: 'Não é lento a comer', weight: 1, value: 'nao', ), ], currentScore: currentScore, nextRoute: (context, nextScore) => MaterialPageRoute( builder: (_) => Quiz14Screen(currentScore: nextScore, scopeId: scopeId), ), answerType: QuizAnswerType.yesNo, showBackButton: true, ); } } // Quiz 14: Prefere alimentos moles (Yes/No) class Quiz14Screen extends StatelessWidget { const Quiz14Screen({super.key, required this.currentScore, this.scopeId}); final int currentScore; final String? scopeId; @override Widget build(BuildContext context) { return QuizQuestionScreen( title: 'Quiz 14/23', category: 'Hábitos alimentares', categoryIcon: Icons.restaurant_menu_rounded, fallbackIcon: Icons.restaurant_menu_rounded, fallbackColor: const Color(0xFF8E7CC3), question: 'O seu filho/a habitualmente prefere comer alimentos moles?', answers: const [ QuizAnswer( title: 'Sim', description: 'Habitualmente prefere comer alimentos moles', weight: 2, value: 'sim', ), QuizAnswer( title: 'Não', description: 'Não prefere alimentos moles', weight: 1, value: 'nao', ), ], currentScore: currentScore, nextRoute: (context, nextScore) => MaterialPageRoute( builder: (_) => Quiz15Screen(currentScore: nextScore, scopeId: scopeId), ), answerType: QuizAnswerType.yesNo, showBackButton: true, ); } } // Quiz 15: Alimentado por biberão (Yes/No) class Quiz15Screen extends StatelessWidget { const Quiz15Screen({super.key, required this.currentScore, this.scopeId}); final int currentScore; final String? scopeId; @override Widget build(BuildContext context) { return QuizQuestionScreen( title: 'Quiz 15/23', category: 'Hábitos alimentares', categoryIcon: Icons.local_drink_rounded, fallbackIcon: Icons.local_drink_rounded, fallbackColor: const Color(0xFFFF55A7), question: 'Em bebé apenas foi alimentado por biberão?', answers: const [ QuizAnswer( title: 'Sim', description: 'Em bebé apenas foi alimentado por biberão', weight: 2, value: 'sim', ), QuizAnswer( title: 'Não', description: 'Não foi apenas alimentado por biberão', weight: 1, value: 'nao', ), QuizAnswer( title: 'Não sei', description: 'Não tenho a certeza', weight: 1, value: 'nao_sei', helpVideoId: 11, ), ], currentScore: currentScore, nextRoute: (context, nextScore) => MaterialPageRoute( builder: (_) => Quiz16Screen(currentScore: nextScore, scopeId: scopeId), ), answerType: QuizAnswerType.yesNo, showBackButton: true, ); } } // Quiz 16: Chupeta (Yes/No) class Quiz16Screen extends StatelessWidget { const Quiz16Screen({super.key, required this.currentScore, this.scopeId}); final int currentScore; final String? scopeId; @override Widget build(BuildContext context) { return QuizQuestionScreen( title: 'Quiz 16/23', category: 'Hábitos orais', categoryIcon: Icons.child_care_rounded, fallbackIcon: Icons.child_care_rounded, fallbackColor: const Color(0xFF2F9E94), question: 'O seu filho/a usa ou usou chupeta com frequência?', answers: const [ QuizAnswer( title: 'Sim', description: 'Usa ou usou chupeta com frequência', weight: 2, value: 'sim', ), QuizAnswer( title: 'Não', description: 'Não usa ou não usou chupeta com frequência', weight: 1, value: 'nao', ), QuizAnswer( title: 'Não sei', description: 'Não tenho a certeza', weight: 1, value: 'nao_sei', helpVideoId: 12, ), ], currentScore: currentScore, nextRoute: (context, nextScore) => MaterialPageRoute( builder: (_) => Quiz17Screen(currentScore: nextScore, scopeId: scopeId), ), answerType: QuizAnswerType.yesNo, showBackButton: true, ); } } // Quiz 17: Chucha o dedo (Yes/No) class Quiz17Screen extends StatelessWidget { const Quiz17Screen({super.key, required this.currentScore, this.scopeId}); final int currentScore; final String? scopeId; @override Widget build(BuildContext context) { return QuizQuestionScreen( title: 'Quiz 17/23', category: 'Hábitos orais', categoryIcon: Icons.back_hand_rounded, fallbackIcon: Icons.back_hand_rounded, fallbackColor: const Color(0xFF8E7CC3), question: 'O seu filho/a chucha ou já chuchou o dedo com frequência?', answers: const [ QuizAnswer( title: 'Sim', description: 'Chucha ou já chuchou o dedo com frequência', weight: 2, value: 'sim', ), QuizAnswer( title: 'Não', description: 'Não chucha ou não chuchou o dedo com frequência', weight: 1, value: 'nao', ), QuizAnswer( title: 'Não sei', description: 'Não tenho a certeza', weight: 1, value: 'nao_sei', helpVideoId: 13, ), ], currentScore: currentScore, nextRoute: (context, nextScore) => MaterialPageRoute( builder: (_) => Quiz18Screen(currentScore: nextScore, scopeId: scopeId), ), answerType: QuizAnswerType.yesNo, showBackButton: true, ); } } // Quiz 18: Face (Image-based) class Quiz18Screen extends StatelessWidget { const Quiz18Screen({super.key, required this.currentScore, this.scopeId}); final int currentScore; final String? scopeId; @override Widget build(BuildContext context) { return QuizQuestionScreen( title: 'Quiz 18/23', category: 'Avaliação facial', categoryIcon: Icons.face_rounded, question: 'O rosto do seu filho/a se parece com o desta imagem?', questionImagePaths: const ['assets/mockup_images/2.jpeg'], suggestedYoutubeId: '', // TODO: colar o ID do YouTube do Episódio 1 suggestedVideoTitle: 'Ver vídeo: Episódio 1', answers: const [ QuizAnswer( title: 'Sim', description: 'O rosto se assemelha à imagem', weight: 2, value: 'sim', ), QuizAnswer( title: 'Não', description: 'O rosto não se assemelha à imagem', weight: 1, value: 'nao', ), ], currentScore: currentScore, nextRoute: (context, nextScore) => MaterialPageRoute( builder: (_) => Quiz19Screen(currentScore: nextScore, scopeId: scopeId), ), answerType: QuizAnswerType.yesNo, showBackButton: true, ); } } // Quiz 19: Boca (Image-based) class Quiz19Screen extends StatelessWidget { const Quiz19Screen({super.key, required this.currentScore, this.scopeId}); final int currentScore; final String? scopeId; @override Widget build(BuildContext context) { return QuizQuestionScreen( title: 'Quiz 19/23', category: 'Avaliação facial', categoryIcon: Icons.sentiment_neutral_rounded, question: 'A boca do seu filho/a fica habitualmente na posição desta imagem (entreaberta)?', questionImagePaths: const ['assets/mockup_images/4.jpeg'], suggestedYoutubeId: '', // TODO: colar o ID do YouTube do Episódio 2 suggestedVideoTitle: 'Ver vídeo: Episódio 2', answers: const [ QuizAnswer( title: 'Sim', description: 'A boca fica habitualmente entreaberta', weight: 2, value: 'sim', ), QuizAnswer( title: 'Não', description: 'A boca fica habitualmente fechada', weight: 1, value: 'nao', ), ], currentScore: currentScore, nextRoute: (context, nextScore) => MaterialPageRoute( builder: (_) => Quiz20Screen(currentScore: nextScore, scopeId: scopeId), ), answerType: QuizAnswerType.yesNo, showBackButton: true, ); } } // Quiz 20: Olheiras (Image-based) class Quiz20Screen extends StatelessWidget { const Quiz20Screen({super.key, required this.currentScore, this.scopeId}); final int currentScore; final String? scopeId; @override Widget build(BuildContext context) { return QuizQuestionScreen( title: 'Quiz 20/23', category: 'Avaliação facial', categoryIcon: Icons.visibility_rounded, question: 'O seu filho/a tem olheiras semelhantes às desta imagem?', questionImagePaths: const ['assets/mockup_images/8.jpeg'], suggestedYoutubeId: '', // TODO: colar o ID do YouTube do Episódio 3 suggestedVideoTitle: 'Ver vídeo: Episódio 3', answers: const [ QuizAnswer( title: 'Sim', description: 'Tem olheiras semelhantes à imagem', weight: 2, value: 'sim', ), QuizAnswer( title: 'Não', description: 'Não tem olheiras semelhantes à imagem', weight: 1, value: 'nao', ), ], currentScore: currentScore, nextRoute: (context, nextScore) => MaterialPageRoute( builder: (_) => Quiz21Screen(currentScore: nextScore, scopeId: scopeId), ), answerType: QuizAnswerType.yesNo, showBackButton: true, ); } } // Quiz 21: Queixo (Image-based) class Quiz21Screen extends StatelessWidget { const Quiz21Screen({super.key, required this.currentScore, this.scopeId}); final int currentScore; final String? scopeId; @override Widget build(BuildContext context) { return QuizQuestionScreen( title: 'Quiz 21/23', category: 'Avaliação facial', categoryIcon: Icons.face_rounded, question: 'Com a boca fechada, o queixo do seu filho/a se parece com o desta imagem?', questionImagePaths: const ['assets/mockup_images/6.jpeg'], suggestedYoutubeId: '', // TODO: colar o ID do YouTube do Episódio 4 suggestedVideoTitle: 'Ver vídeo: Episódio 4', answers: const [ QuizAnswer( title: 'Sim', description: 'O queixo se assemelha à imagem', weight: 2, value: 'sim', ), QuizAnswer( title: 'Não', description: 'O queixo não se assemelha à imagem', weight: 1, value: 'nao', ), ], currentScore: currentScore, nextRoute: (context, nextScore) => MaterialPageRoute( builder: (_) => Quiz22Screen(currentScore: nextScore, scopeId: scopeId), ), answerType: QuizAnswerType.yesNo, showBackButton: true, ); } } // Quiz 22: Boca (Image-based) class Quiz22Screen extends StatelessWidget { const Quiz22Screen({super.key, required this.currentScore, this.scopeId}); final int currentScore; final String? scopeId; @override Widget build(BuildContext context) { return QuizQuestionScreen( title: 'Quiz 22/23', category: 'Avaliação facial', categoryIcon: Icons.sentiment_neutral_rounded, question: 'A boca do seu filho/a se parece com a desta imagem?', questionImagePaths: const ['assets/mockup_images/14.jpeg'], suggestedYoutubeId: '', // TODO: colar o ID do YouTube do Episódio 5 suggestedVideoTitle: 'Ver vídeo: Episódio 5', answers: const [ QuizAnswer( title: 'Sim', description: 'A boca se assemelha à imagem', weight: 2, value: 'sim', ), QuizAnswer( title: 'Não', description: 'A boca não se assemelha à imagem', weight: 1, value: 'nao', ), ], currentScore: currentScore, nextRoute: (context, nextScore) => MaterialPageRoute( builder: (_) => Quiz23Screen(currentScore: nextScore, scopeId: scopeId), ), answerType: QuizAnswerType.yesNo, showBackButton: true, ); } } // Quiz 23: Freio (Image-based) class Quiz23Screen extends StatelessWidget { const Quiz23Screen({super.key, required this.currentScore, this.scopeId}); final int currentScore; final String? scopeId; @override Widget build(BuildContext context) { return QuizQuestionScreen( title: 'Quiz 23/23', category: 'Avaliação facial', categoryIcon: Icons.record_voice_over_rounded, question: 'O frénulo (freio) da língua do seu filho/a se parece com o desta imagem?', questionImagePaths: const ['assets/mockup_images/17.png'], suggestedYoutubeId: '', // TODO: colar o ID do YouTube do Episódio 6 suggestedVideoTitle: 'Ver vídeo: Episódio 6', answers: const [ QuizAnswer( title: 'Sim', description: 'O frénulo se assemelha à imagem', weight: 2, value: 'sim', ), QuizAnswer( title: 'Não', description: 'O frénulo não se assemelha à imagem', weight: 1, value: 'nao', ), ], currentScore: currentScore, nextRoute: (context, nextScore) => MaterialPageRoute( builder: (_) => QuizResultScreen( finalScore: nextScore, maxScore: 46, scopeId: scopeId, ), ), answerType: QuizAnswerType.yesNo, isFinal: true, showBackButton: true, ); } }