There is no problem with the added font. Added font file to pubspec.yaml.
What I want to do is to output the data entered in the font file.
I want to output the text entered in the .ttf file rather than applying the font with fontFamily of TextWidget. For example
List<String> fontData = //Insert FontData;
Text(fontData[0]); //L
Text(fontData[1]); //O
Text(fontData[2]); //r
If you know a method or library how, please let me know, thanks.
