Skip to content

Joezzy/currency_symbol

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

The currency_symbol package allows you to display currency symbols() by supplying the currency codes(i.e NGN, USD, GBP etc)

##Installation add currency_symbol to your pubspec.yaml file run pub get in your console/terminal to add it to your project

##Import:

import 'package:currency_symbols/currency_symbols.dart';

##Usage:


String myCurrencySymbol=cSymbol("NGN");

OR Within your UI Text you can add as:


class  extends StatelessWidget {
  const ({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Container(
            child:Text("${cSymbol("GBP")}")
                    );
      }
}

Parameters


Currency Code(STRING) : Currency code are three(3) letters representation of currency(i.e NGN, USD, EUR)


Amount(DOUBLE) : The amount to be formatted


Number of decimals : This is to roundup to a certain decimal place.


##Currencies Supported

NGN    : Naira
______________________________
USD    : US Dollar
______________________________
EUR    : Euro
______________________________
GBP    : Great Britain Pound
______________________________
JPY    : Japanese Yen
______________________________
AFN    : Afghani
______________________________
CHY    : Chinese Yuan
______________________________
ILS    : Israeli New Shekel
______________________________
INR    : Indian Rupee
______________________________
RUB    : Russian Rouble
______________________________
CZK    : Czech Koruna
______________________________
KRW    : Korean Won
______________________________
PHP    : Philippine Peso
______________________________
PLN    : Polish Zloty
______________________________
VND    : Vietnamese Dong
______________________________
THB    : Thai Baht
______________________________
ZAR    : South African Rand
______________________________

About

A Flutter currency symbol package

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages