CTK 1.0.0

This commit is contained in:
Carlos Correia
2026-07-14 22:19:26 +01:00
parent afce79b9b9
commit fb39e1f722
7 changed files with 79 additions and 65 deletions

View File

@@ -920,11 +920,11 @@ class Quiz19Screen extends StatelessWidget {
'Qual das seguintes imagens é mais parecida com o perfil do seu filho/a?',
answers: [
QuizAnswer(
title: 'Perfil reto',
description: 'Perfil facial reto',
weight: 1,
title: 'Perfil convexo',
description: 'Perfil facial convexo',
weight: 2,
hideTitle: true,
value: 'perfil_reto',
value: 'perfil_convexo',
imageBuilder: (context) => _zoomCrop(
'assets/mockup_images/1.jpeg',
alignment: const Alignment(0.1, 0.7),
@@ -932,11 +932,11 @@ class Quiz19Screen extends StatelessWidget {
),
),
QuizAnswer(
title: 'Perfil convexo',
description: 'Perfil facial convexo',
weight: 2,
title: 'Perfil reto',
description: 'Perfil facial reto',
weight: 1,
hideTitle: true,
value: 'perfil_convexo',
value: 'perfil_reto',
imageBuilder: (context) => _zoomCrop(
'assets/mockup_images/2.jpeg',
alignment: const Alignment(0.1, 0.7),
@@ -1199,20 +1199,20 @@ class Quiz24Screen extends StatelessWidget {
question:
'Qual das seguintes imagens se assemelha à boca do seu filho/a?',
answers: const [
QuizAnswer(
title: 'Ligeiro desalinhamento',
description: 'Pequeno desalinhamento ou espaço entre alguns dentes',
weight: 1,
hideTitle: true,
value: 'apinhamento_leve',
imagePath: 'assets/mockup_images/16.png',
),
QuizAnswer(
title: 'Apinhamento moderado',
description: 'Dentes rodados/desalinhados de forma mais visível',
weight: 2,
hideTitle: true,
value: 'apinhamento_moderado',
imagePath: 'assets/mockup_images/16.png',
),
QuizAnswer(
title: 'Ligeiro desalinhamento',
description: 'Pequeno desalinhamento ou espaço entre alguns dentes',
weight: 1,
hideTitle: true,
value: 'apinhamento_leve',
imagePath: 'assets/mockup_images/15.png',
),
QuizAnswer(
@@ -1297,20 +1297,20 @@ class Quiz26Screen extends StatelessWidget {
question:
'Qual das seguintes imagens se assemelha ao freio lingual do seu filho/a?',
answers: const [
QuizAnswer(
title: 'Freio lingual correto',
description: 'Língua move-se livremente, sem restrição visível',
weight: 1,
hideTitle: true,
value: 'freio_lingual_correto',
imagePath: 'assets/mockup_images/17.png',
),
QuizAnswer(
title: 'Freio lingual inadequado',
description: 'Freio lingual curto/apertado (língua em coração)',
weight: 2,
hideTitle: true,
value: 'freio_lingual_inadequado',
imagePath: 'assets/mockup_images/17.png',
),
QuizAnswer(
title: 'Freio lingual correto',
description: 'Língua move-se livremente, sem restrição visível',
weight: 1,
hideTitle: true,
value: 'freio_lingual_correto',
imagePath: 'assets/mockup_images/18.jpeg',
),
],
@@ -1389,20 +1389,20 @@ class Quiz28Screen extends StatelessWidget {
question:
'Qual das seguintes imagens se assemelha ao céu da boca do seu filho/a?',
answers: const [
QuizAnswer(
title: 'Posição em U saudável',
description: 'Palato largo, em forma de U',
weight: 1,
hideTitle: true,
value: 'palato_u',
imagePath: 'assets/mockup_images/26.png',
),
QuizAnswer(
title: 'Posição profunda incorreta',
description: 'Palato estreito/profundo, em forma de V',
weight: 2,
hideTitle: true,
value: 'palato_v',
imagePath: 'assets/mockup_images/26.png',
),
QuizAnswer(
title: 'Posição em U saudável',
description: 'Palato largo, em forma de U',
weight: 1,
hideTitle: true,
value: 'palato_u',
imagePath: 'assets/mockup_images/27.png',
),
],