currency_code_to_currency_symbol 0.0.1 copy "currency_code_to_currency_symbol: ^0.0.1" to clipboard
currency_code_to_currency_symbol: ^0.0.1 copied to clipboard

Currency code to currency symbol

1.Add dependancy

currency_code_to_currency_symbol: 0.01

2.Import the package

import 'package:currency_code_to_currency_symbol/currency_code_to_currency_symbol.dart';

Features #

This package receives a currency code for example usd and converts it to currency symbol => $

Usage #

import 'package:flutter/material.dart';
import 'package:your_package_name/currency_code_to_currency_symbol.dart'; // Adjust the import path as necessary

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: Text('Currency Symbol Example')),
        body: Center(
          child: currency_code_to_currency_symbol(currencyCode: 'USD'), // Example usage
        ),
      ),
    );
  }
}

9
likes
0
points
893
downloads

Publisher

unverified uploader

Weekly Downloads

Currency code to currency symbol

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on currency_code_to_currency_symbol