bitcoin_icons

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

bitcoin icons

Bitcoin Icons Flutter Package
The Bitcoin Icons Flutter Package provides a comprehensive collection of icons specifically designed for Bitcoin applications. These icons are free to use and have been crafted by the Bitcoin design community. You can explore the complete set of icons at bitcoinicons.com or bitcoin_icons.
With this package, you can easily use Bitcoin icons into your Flutter projects without the need to import individual SVG files and handle rendering manually. Simply import the bitcoin_icons package and utilize the provided icons effortlessly.
Installation #
Add the following line to your pubspec.yaml file:
dependencies:
bitcoin_icons: ^0.0.4
copied to clipboard
Then run flutter pub get to fetch the package.
Usage #
Import the bitcoin_icons package in your file:
import 'package:bitcoin_icons/bitcoin_icons.dart';
copied to clipboard
To use an icon from the package, you can utilize the Icon widget:
Icon(BitcoinIcons.miner)
copied to clipboard
By default, the package provides filled icons. If you prefer to use the outline version, simply append _outline to the icon name:
Icon(BitcoinIcons.miner_outline)
copied to clipboard
Example #
Here's a simple example demonstrating the usage of Bitcoin icons in a Flutter application:
import 'package:flutter/material.dart';
import 'package:bitcoin_icons/bitcoin_icons.dart';

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

class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Bitcoin Icons Demo',
home: Scaffold(
appBar: AppBar(
title: Text('Bitcoin Icons Demo'),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(BitcoinIcons.miner),
SizedBox(height: 16),
Icon(BitcoinIcons.miner_outline),
],
),
),
),
);
}
}
copied to clipboard
About Bitcoin Icons #
The Bitcoin Icons project is an open-source and open-design initiative by the Bitcoin design community. It aims to provide a comprehensive set of icons for Bitcoin-related applications and services. You can find more information about the project and explore the complete icon set at bitcoinicons.com.
License #
This Flutter package is licensed under the MIT License.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.