I am developing an application. And i need to set the symbol of Indian rupee on text view which is set with the text as amount.
Symbol:
you can go with the below line of code for Flutter
child: Text('\u20B9 ${tx.amount}',
Use \u20B9
if you want to print the Rupee Symbol
and
Use \u20A8
if you want to print "Rs"
Try this, Instead of Rupee_Foradian.ttf
use Rupee.ttf
it will work. am getting currency symbol.
Typeface tf = Typeface.createFromAsset(getAssets(), "font/Rupee.ttf");
textView1.setTypeface(tf);
textView1.setText("`");