flutter_currency_converter 0.0.3 copy "flutter_currency_converter: ^0.0.3" to clipboard
flutter_currency_converter: ^0.0.3 copied to clipboard

discontinued

A Flutter plugin for converting the currencies

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_currency_converter/Currency.dart';
import 'package:flutter_currency_converter/flutter_currency_converter.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  String usd_lkr = "";
  String aud_eur = "";
  String aed_chf = "";

  @override
  void initState() {
    super.initState();

    getAmounts();
  }

  void getAmounts() async {
    var usd_lkr_ = await FlutterCurrencyConverter.convert(
        Currency(Currency.USD, amount: 100), Currency(Currency.LKR));

    var aud_eur_ = await FlutterCurrencyConverter.convert(
        Currency(Currency.AUD, amount: 200), Currency(Currency.EUR));

    var aed_chf_ = await FlutterCurrencyConverter.convert(
        Currency(Currency.AED, amount: 945), Currency(Currency.CHF));

    setState(() {
      usd_lkr = usd_lkr_.toString();
      aud_eur = aud_eur_.toString();
      aed_chf = aed_chf_.toString();
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Currency Convertor Example'),
        ),
        body: Container(
          padding: EdgeInsets.all(20),
          child: Column(
            children: <Widget>[
              Row(
                mainAxisAlignment: MainAxisAlignment.center,
                children: <Widget>[
                  Text(
                    "1 USD to LKR = ",
                    style: TextStyle(fontWeight: FontWeight.bold, fontSize: 22),
                  ),
                  Text(
                    "${usd_lkr}",
                    style: TextStyle(fontWeight: FontWeight.bold, fontSize: 22),
                  ),
                ],
              ),
              SizedBox(
                height: 10,
              ),
              Row(
                mainAxisAlignment: MainAxisAlignment.center,
                children: <Widget>[
                  Text(
                    "200 AUD to EUR = ",
                    style: TextStyle(fontWeight: FontWeight.bold, fontSize: 22),
                  ),
                  Text(
                    "${aud_eur}",
                    style: TextStyle(fontWeight: FontWeight.bold, fontSize: 22),
                  ),
                ],
              ),
              SizedBox(
                height: 10,
              ),
              Row(
                mainAxisAlignment: MainAxisAlignment.center,
                children: <Widget>[
                  Text(
                    "945 AED to CHF = ",
                    style: TextStyle(fontWeight: FontWeight.bold, fontSize: 22),
                  ),
                  Text(
                    "${aed_chf}",
                    style: TextStyle(fontWeight: FontWeight.bold, fontSize: 22),
                  ),
                ],
              ),
            ],
          ),
        ),
      ),
    );
  }
}
5
likes
30
pub points
41%
popularity

Publisher

unverified uploader

A Flutter plugin for converting the currencies

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter, http

More

Packages that depend on flutter_currency_converter