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

outdated

A simple yet powerful, elegant, customizable, and efficient currency chooser dialog with search support.

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
45%
popularity

Publisher

unverified uploader

A simple yet powerful, elegant, customizable, and efficient currency chooser dialog with search support.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on country_currency_chooser