Hello,
I was experimenting a bit with the examples, MAUI and NativeUI ones. I was trying to use labels with English, German, French and Greek language.
For the MAUI, after a tip from Sam, using the Notepad++ i figured out how to create labels correctly.
In case someone need it in the future, for supporting Greek German French for example, i created the .mof file using the BMFont Generator, including all the characters i need.
Then with Notepad++ you choose:
Plugins->Converter->Conversion panel.
In the ASCII box you type any special character you need like, ç, à, é, ö, click insert, make sure the encoding is "Encode in ANSI", copy text and paste it in the source code, where you type the label text.
Now the question is in the Native UI, with the same reasoning, do i need to load a particular font containing those special characters, from device?
If you type the text,in NativeUIDemo, in different language i get the UTF-8 error message. Like the one you get in MAUI if you don't follow the above procedure.
For example in the NativeUIDemo, lets say in the color list, i wanted to write words in different languages, like:
(In the place of Red, Green, Blue text etc )
Französisch
Française
Γαλλικά
and so on
(meaning French, in German, French and Greek language)
Does NativeUI support this? An example could be helpful.