Merge branch 'develop' into bug-fixing-19-MAR

This commit is contained in:
Tiago Ribeiro
2024-03-22 11:15:30 +00:00
6 changed files with 3 additions and 12 deletions

View File

@@ -11,7 +11,7 @@ export const RadialResult = ({module, score, total, png}: ModuleScore) => (
<Image src={png} style={styles.image64}></Image>
<View style={[styles.textColor, styles.radialResultContainer]}>
<Text style={styles.textBold}>{Math.floor(score)}</Text>
<Text style={{fontSize: 8}}>out of {total}</Text>
<Text style={{fontSize: 8}}>out of 9.0</Text>
</View>
</View>
);