country_currency_chooser 0.1.1 copy "country_currency_chooser: ^0.1.1" to clipboard
country_currency_chooser: ^0.1.1 copied to clipboard

outdated

An easy to use searchable currency chooser widget.

example/example.dart

import 'package:flutter/material.dart';

import 'package:country_currency_chooser/country_currency_chooser.dart';

main() => MyApp();

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: Homepage(),
      ),
    );
  }
}

class Homepage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Center(
      child: RaisedButton(
        onPressed: () => showDialog(
          context: context,
          builder: (context) => CurrencyChooserDialog(),
        ),
      ),
    );
  }
}
13
likes
0
pub points
43%
popularity

Publisher

unverified uploader

An easy to use searchable currency chooser widget.

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on country_currency_chooser