Hello All,

I had used FontLoader in QML to load the custom font (.ttf file). I am using this in order to show Russian language text on screen. It was working fine on Desktop application but I am facing issue when I run the same on my target board based on Linux. I had tried by placing the .ttf files in resource file also but in vain.

FontLoader{
id: cyrillicFont
source: "ClearSans-Bold.ttf"
}

Text {
text: "Английский"
font.family: cyrillicFont.name
}

Error: FontLoader could not load the font (.ttf file path)

Can someone help me out to make it work on the target board? Please clarify me if I am doing any thing wrong.

Thanks in advance.