Skip to content

Commit

Permalink
colorful_iconify_flutter
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Nasef committed Mar 10, 2022
1 parent fed6a94 commit 2ab452a
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.0.2

- Added Colorful Iconify Icon Sets

## 0.0.1

- First Release
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import 'package:colorful_iconify_flutter/icons/emojione.dart'; // for Colorful I
....
:
Iconify(Zondicons.fairplane)
Iconify(Zondicons.airplane)
Iconify(Emojione.baby)
// as widgets
```
Expand Down Expand Up @@ -76,4 +76,4 @@ All icon sets are free but Some collections require attribution when used for co
- [ ] Get first 100 stars on [github.com](https://github.com/andronasef/iconify_flutter/)
- [ ] Add tests to package
- [ ] Get Flutter Favourite Badge
- [ ] Add colorful icons to iconify_flutter
- [x] Add colorful icons to iconify_flutter
4 changes: 2 additions & 2 deletions example/lib/main.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import 'package:flutter/material.dart';
import 'package:iconify_flutter/iconify_flutter.dart';
import 'package:iconify_flutter/icons/bi.dart';
import 'package:iconify_flutter/icons/zondicons.dart'; // for Non Colorful Icons

void main() {
runApp(const MyApp());
Expand Down Expand Up @@ -34,7 +34,7 @@ class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
body: const Iconify(Bi.align_top, color: Colors.blue, size: 100),
body: const Iconify(Zondicons.airplane, color: Colors.blue, size: 100),
appBar: AppBar(
title: Text(widget.title),
),
Expand Down
9 changes: 8 additions & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,13 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "1.15.0"
colorful_iconify_flutter:
dependency: transitive
description:
name: colorful_iconify_flutter
url: "https://pub.dartlang.org"
source: hosted
version: "0.0.1"
fake_async:
dependency: transitive
description:
Expand Down Expand Up @@ -80,7 +87,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.0.1"
version: "0.0.2"
lints:
dependency: transitive
description:
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: iconify_flutter
description: '100+ open source icon sets for flutter'
version: 0.0.1
version: 0.0.2
homepage: 'https://github.com/andronasef/iconify_flutter'

environment:
Expand All @@ -11,7 +11,7 @@ dependencies:
flutter:
sdk: flutter
flutter_svg: ^1.0.3
colorful_iconify: null
colorful_iconify_flutter: null

dev_dependencies:
flutter_test:
Expand Down

0 comments on commit 2ab452a

Please sign in to comment.