fix: text ui scaling

Made text UI scaling follow OS level scailing to a limit to stop
overlapping issues

Signed-off-by: Lance Chant <13349722+lancechant@users.noreply.github.com>
This commit is contained in:
Lance Chant
2026-01-19 14:59:11 +02:00
committed by Gauvain
parent 16187aab90
commit 0e5c3215f3
14 changed files with 70 additions and 27 deletions

View File

@@ -175,10 +175,16 @@ export const Favorites = () => {
contentFit='contain'
source={heart}
/>
<Text className='text-xl font-semibold text-white mb-2'>
<Text
maxFontSizeMultiplier={1.2}
className='text-xl font-semibold text-white mb-2'
>
{t("favorites.noDataTitle")}
</Text>
<Text className='text-base text-white/70 text-center max-w-xs px-4'>
<Text
maxFontSizeMultiplier={1.2}
className='text-base text-white/70 text-center max-w-xs px-4'
>
{t("favorites.noData")}
</Text>
</View>