feat(frontend): add restitution result screen (completes student flow)

This commit is contained in:
SaidSoighiri94
2026-07-07 10:08:33 +02:00
parent e9d67e78f5
commit 90d5a65f29
4 changed files with 292 additions and 3 deletions
@@ -0,0 +1,7 @@
/// Une différence constatée au retour par rapport au départ (RG20).
class AnomalieRetour {
const AnomalieRetour({required this.element, required this.etatRetour});
final String element;
final String etatRetour;
}