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

A new Flutter package project to show cryptocurrency list.

cryptocurrency #

A new Flutter package show crypto currency price list.

Screenshots #

Usage #

Example

To use this package :

  dependencies:
    flutter:
      sdk: flutter
    cryptocurrency: ^0.0.1

How to use #


class CryptoListWidgett extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return new Scaffold(
      body: CryptoListWidget(
        [CryptoCurrencyID.BCH], // choose coin list, set empty array to show all coins
          cryptoCurrencyPriceType: CryptoCurrencyPriceType.USD, // price type USD, EUR, default is USD
          cryptoCurrencyExchange: CryptoCurrencyExchange.binance, // exchange type, default is binance
          header: "title", // list title, don't set to hide
          itemClickCallBack: (Coin coin) { // item click call back
            print("${coin.name} cliced");
          }),
    );
  }
}

License #

Copyright 2020 Erfan Eghterafi

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Getting Started #

For help getting started with Flutter, view our online documentation.

For help on editing package code, view the documentation.

3
likes
20
pub points
0%
popularity

Publisher

unverified uploader

A new Flutter package project to show cryptocurrency list.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, flutter_svg, http

More

Packages that depend on cryptocurrency