├── example ├── test │ └── widget_test.dart ├── ios │ ├── Flutter │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ └── AppFrameworkInfo.plist │ ├── Runner │ │ ├── Runner-Bridging-Header.h │ │ ├── Assets.xcassets │ │ │ ├── LaunchImage.imageset │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ ├── README.md │ │ │ │ └── Contents.json │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ │ └── Contents.json │ │ ├── AppDelegate.swift │ │ ├── Base.lproj │ │ │ ├── Main.storyboard │ │ │ └── LaunchScreen.storyboard │ │ └── Info.plist │ ├── Runner.xcodeproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── WorkspaceSettings.xcsettings │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ └── project.pbxproj │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── WorkspaceSettings.xcsettings │ │ │ └── IDEWorkspaceChecks.plist │ └── .gitignore ├── web │ ├── favicon.png │ ├── icons │ │ ├── Icon-192.png │ │ └── Icon-512.png │ ├── manifest.json │ └── index.html ├── android │ ├── gradle.properties │ ├── app │ │ ├── src │ │ │ ├── main │ │ │ │ ├── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values-night │ │ │ │ │ │ └── styles.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── example │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── AndroidManifest.xml │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ └── build.gradle │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ ├── .gitignore │ ├── settings.gradle │ └── build.gradle ├── assets │ └── image │ │ └── banner.png ├── .metadata ├── README.md ├── lib │ ├── src │ │ └── data │ │ │ ├── icon_detail.dart │ │ │ └── icons.dart │ ├── widget │ │ └── icon_item.dart │ └── main.dart ├── .gitignore ├── analysis_options.yaml ├── pubspec.yaml └── pubspec.lock ├── lib ├── src │ ├── utils │ │ └── constants.dart │ ├── iconly_bold.dart │ ├── iconly_light.dart │ └── iconly_broken.dart └── iconly.dart ├── .fvm └── fvm_config.json ├── fonts ├── IconlyBold.ttf ├── IconlyBroken.ttf └── IconlyLight.ttf ├── assets └── image │ ├── white_banner.jpg │ └── transparent_banner.png ├── test └── flutter_iconly_test.dart ├── .metadata ├── CHANGELOG.md ├── pubspec.yaml ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── .gitignore └── pubspec.lock /example/test/widget_test.dart: -------------------------------------------------------------------------------- 1 | void main() {} 2 | -------------------------------------------------------------------------------- /example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /lib/src/utils/constants.dart: -------------------------------------------------------------------------------- 1 | const String packageName = 'iconly'; 2 | -------------------------------------------------------------------------------- /.fvm/fvm_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "flutterSdkVersion": "beta", 3 | "flavors": {} 4 | } -------------------------------------------------------------------------------- /example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /fonts/IconlyBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6thsolution/flutter_iconly/HEAD/fonts/IconlyBold.ttf -------------------------------------------------------------------------------- /example/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6thsolution/flutter_iconly/HEAD/example/web/favicon.png -------------------------------------------------------------------------------- /fonts/IconlyBroken.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6thsolution/flutter_iconly/HEAD/fonts/IconlyBroken.ttf -------------------------------------------------------------------------------- /fonts/IconlyLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6thsolution/flutter_iconly/HEAD/fonts/IconlyLight.ttf -------------------------------------------------------------------------------- /assets/image/white_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6thsolution/flutter_iconly/HEAD/assets/image/white_banner.jpg -------------------------------------------------------------------------------- /example/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6thsolution/flutter_iconly/HEAD/example/web/icons/Icon-192.png -------------------------------------------------------------------------------- /example/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6thsolution/flutter_iconly/HEAD/example/web/icons/Icon-512.png -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.useAndroidX=true 3 | android.enableJetifier=true 4 | -------------------------------------------------------------------------------- /example/assets/image/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6thsolution/flutter_iconly/HEAD/example/assets/image/banner.png -------------------------------------------------------------------------------- /assets/image/transparent_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6thsolution/flutter_iconly/HEAD/assets/image/transparent_banner.png -------------------------------------------------------------------------------- /lib/iconly.dart: -------------------------------------------------------------------------------- 1 | library iconly; 2 | 3 | export 'src/iconly_bold.dart'; 4 | export 'src/iconly_broken.dart'; 5 | export 'src/iconly_light.dart'; 6 | -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6thsolution/flutter_iconly/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6thsolution/flutter_iconly/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6thsolution/flutter_iconly/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6thsolution/flutter_iconly/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6thsolution/flutter_iconly/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /test/flutter_iconly_test.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter_test/flutter_test.dart'; 2 | 3 | void main() { 4 | test('adds one to input values', () { 5 | expect(3, 3); 6 | }); 7 | } 8 | -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6thsolution/flutter_iconly/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6thsolution/flutter_iconly/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6thsolution/flutter_iconly/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6thsolution/flutter_iconly/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6thsolution/flutter_iconly/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6thsolution/flutter_iconly/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6thsolution/flutter_iconly/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6thsolution/flutter_iconly/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6thsolution/flutter_iconly/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6thsolution/flutter_iconly/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6thsolution/flutter_iconly/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6thsolution/flutter_iconly/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6thsolution/flutter_iconly/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6thsolution/flutter_iconly/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6thsolution/flutter_iconly/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6thsolution/flutter_iconly/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /example/android/app/src/main/kotlin/com/example/example/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.example.example 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | 5 | class MainActivity: FlutterActivity() { 6 | } 7 | -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6thsolution/flutter_iconly/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/6thsolution/flutter_iconly/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 23 08:50:38 CEST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip 7 | -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: f4abaa0735eba4dfd8f33f73363911d63931fe03 8 | channel: stable 9 | 10 | project_type: package 11 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.0.1 2 | 3 | * Example Published and document updated: 4 | * Example Project is now available on this [Link](https://6thsolution.github.io/flutter_iconly) 5 | * README.md updated 6 | 7 | ## 1.0.0 8 | 9 | * Initial release. In this version, we are supporting these icon sets: 10 | * Light 11 | * Bold 12 | * Broken 13 | -------------------------------------------------------------------------------- /example/.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: 615957513eb43b128a16048ab5aa2daaba1656cd 8 | channel: beta 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /example/android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | 9 | # Remember to never publicly share your keystore. 10 | # See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app 11 | key.properties 12 | **/*.keystore 13 | **/*.jks 14 | -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- 1 | # Launch Screen Assets 2 | 3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory. 4 | 5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. -------------------------------------------------------------------------------- /example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Flutter 3 | 4 | @UIApplicationMain 5 | @objc class AppDelegate: FlutterAppDelegate { 6 | override func application( 7 | _ application: UIApplication, 8 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? 9 | ) -> Bool { 10 | GeneratedPluginRegistrant.register(with: self) 11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | 3 | def localPropertiesFile = new File(rootProject.projectDir, "local.properties") 4 | def properties = new Properties() 5 | 6 | assert localPropertiesFile.exists() 7 | localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) } 8 | 9 | def flutterSdkPath = properties.getProperty("flutter.sdk") 10 | assert flutterSdkPath != null, "flutter.sdk not set in local.properties" 11 | apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle" 12 | -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "LaunchImage.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "LaunchImage@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "LaunchImage@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- 1 | # example 2 | 3 | A new Flutter project. 4 | 5 | ## Getting Started 6 | 7 | This project is a starting point for a Flutter application. 8 | 9 | A few resources to get you started if this is your first Flutter project: 10 | 11 | - [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab) 12 | - [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook) 13 | 14 | For help getting started with Flutter, view our 15 | [online documentation](https://flutter.dev/docs), which offers tutorials, 16 | samples, guidance on mobile development, and a full API reference. 17 | -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: iconly 2 | description: Flutter package for using Iconly Icons. 3 | version: 1.0.1 4 | homepage: https://github.com/6thsolution/flutter_iconly 5 | 6 | environment: 7 | sdk: ">=2.12.0 <3.0.0" 8 | flutter: ">=1.17.0" 9 | 10 | dependencies: 11 | flutter: 12 | sdk: flutter 13 | 14 | dev_dependencies: 15 | flutter_test: 16 | sdk: flutter 17 | 18 | flutter: 19 | fonts: 20 | - family: IconlyBold 21 | fonts: 22 | - asset: fonts/IconlyBold.ttf 23 | - family: IconlyBroken 24 | fonts: 25 | - asset: fonts/IconlyBroken.ttf 26 | - family: IconlyLight 27 | fonts: 28 | - asset: fonts/IconlyLight.ttf 29 | -------------------------------------------------------------------------------- /example/web/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "example", 3 | "short_name": "example", 4 | "start_url": ".", 5 | "display": "standalone", 6 | "background_color": "#0175C2", 7 | "theme_color": "#0175C2", 8 | "description": "A new Flutter project.", 9 | "orientation": "portrait-primary", 10 | "prefer_related_applications": false, 11 | "icons": [ 12 | { 13 | "src": "icons/Icon-192.png", 14 | "sizes": "192x192", 15 | "type": "image/png" 16 | }, 17 | { 18 | "src": "icons/Icon-512.png", 19 | "sizes": "512x512", 20 | "type": "image/png" 21 | } 22 | ] 23 | } 24 | -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | ext.kotlin_version = '1.3.50' 3 | repositories { 4 | google() 5 | mavenCentral() 6 | } 7 | 8 | dependencies { 9 | classpath 'com.android.tools.build:gradle:4.1.0' 10 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" 11 | } 12 | } 13 | 14 | allprojects { 15 | repositories { 16 | google() 17 | mavenCentral() 18 | } 19 | } 20 | 21 | rootProject.buildDir = '../build' 22 | subprojects { 23 | project.buildDir = "${rootProject.buildDir}/${project.name}" 24 | project.evaluationDependsOn(':app') 25 | } 26 | 27 | task clean(type: Delete) { 28 | delete rootProject.buildDir 29 | } 30 | -------------------------------------------------------------------------------- /example/ios/.gitignore: -------------------------------------------------------------------------------- 1 | *.mode1v3 2 | *.mode2v3 3 | *.moved-aside 4 | *.pbxuser 5 | *.perspectivev3 6 | **/*sync/ 7 | .sconsign.dblite 8 | .tags* 9 | **/.vagrant/ 10 | **/DerivedData/ 11 | Icon? 12 | **/Pods/ 13 | **/.symlinks/ 14 | profile 15 | xcuserdata 16 | **/.generated/ 17 | Flutter/App.framework 18 | Flutter/Flutter.framework 19 | Flutter/Flutter.podspec 20 | Flutter/Generated.xcconfig 21 | Flutter/ephemeral/ 22 | Flutter/app.flx 23 | Flutter/app.zip 24 | Flutter/flutter_assets/ 25 | Flutter/flutter_export_environment.sh 26 | ServiceDefinitions.json 27 | Runner/GeneratedPluginRegistrant.* 28 | 29 | # Exceptions to above rules. 30 | !default.mode1v3 31 | !default.mode2v3 32 | !default.pbxuser 33 | !default.perspectivev3 34 | -------------------------------------------------------------------------------- /example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | App 9 | CFBundleIdentifier 10 | io.flutter.flutter.app 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | App 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0 23 | MinimumOSVersion 24 | 8.0 25 | 26 | 27 | -------------------------------------------------------------------------------- /example/lib/src/data/icon_detail.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class IconlyDetail extends Comparable { 4 | IconlyDetail({ 5 | required this.title, 6 | required this.type, 7 | required this.iconData, 8 | }); 9 | 10 | final String title; 11 | final String type; 12 | final IconData iconData; 13 | 14 | @override 15 | String toString() => 'IconlyDetail{iconData: $iconData, type: $type, title: $title}'; 16 | 17 | @override 18 | bool operator ==(Object other) => 19 | identical(this, other) || 20 | other is IconlyDetail && 21 | runtimeType == other.runtimeType && 22 | iconData == other.iconData && 23 | title == other.title && 24 | type == other.type; 25 | 26 | @override 27 | int get hashCode => iconData.hashCode ^ title.hashCode ^ type.hashCode; 28 | 29 | @override 30 | int compareTo(other) => title.compareTo(other.title); 31 | } 32 | -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- 1 | # Miscellaneous 2 | *.class 3 | *.log 4 | *.pyc 5 | *.swp 6 | .DS_Store 7 | .atom/ 8 | .buildlog/ 9 | .history 10 | .svn/ 11 | 12 | # IntelliJ related 13 | *.iml 14 | *.ipr 15 | *.iws 16 | .idea/ 17 | 18 | # The .vscode folder contains launch configuration and tasks you configure in 19 | # VS Code which you may wish to be included in version control, so this line 20 | # is commented out by default. 21 | #.vscode/ 22 | 23 | # Flutter/Dart/Pub related 24 | **/doc/api/ 25 | **/ios/Flutter/.last_build_id 26 | .dart_tool/ 27 | .flutter-plugins 28 | .flutter-plugins-dependencies 29 | .packages 30 | .pub-cache/ 31 | .pub/ 32 | /build/ 33 | 34 | # Web related 35 | lib/generated_plugin_registrant.dart 36 | 37 | # Symbolication related 38 | app.*.symbols 39 | 40 | # Obfuscation related 41 | app.*.map.json 42 | 43 | # Android Studio will place build artifacts here 44 | /android/app/debug 45 | /android/app/profile 46 | /android/app/release 47 | -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 15 | 18 | 19 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "files.autoSave": "afterDelay", 3 | "dart.lineLength": 120, 4 | "[dart]": { 5 | "editor.formatOnSave": true, 6 | "editor.formatOnType": true, 7 | "editor.selectionHighlight": false, 8 | "editor.suggest.snippetsPreventQuickSuggestions": false, 9 | "editor.suggestSelection": "first", 10 | "editor.tabCompletion": "onlySnippets", 11 | "editor.wordBasedSuggestions": false, 12 | "editor.defaultFormatter": "Dart-Code.dart-code", 13 | "editor.rulers": [ 14 | 120 15 | ], 16 | }, 17 | "dart.debugExternalLibraries": false, 18 | "dart.debugSdkLibraries": false, 19 | "todohighlight.isEnable": true, 20 | "dart.flutterSdkPath": ".fvm/flutter_sdk", 21 | // Remove .fvm files from search 22 | "search.exclude": { 23 | "**/.fvm": true 24 | }, 25 | // Remove from file watching 26 | "files.watcherExclude": { 27 | "**/.fvm": true 28 | }, 29 | "cSpell.words": [ 30 | "rekab", 31 | "rxdart", 32 | "sublist" 33 | ] 34 | } -------------------------------------------------------------------------------- /example/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 15 | 18 | 19 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 6thSolution 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /example/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | # This file configures the analyzer, which statically analyzes Dart code to 2 | # check for errors, warnings, and lints. 3 | # 4 | # The issues identified by the analyzer are surfaced in the UI of Dart-enabled 5 | # IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be 6 | # invoked from the command line by running `flutter analyze`. 7 | 8 | # The following line activates a set of recommended lints for Flutter apps, 9 | # packages, and plugins designed to encourage good coding practices. 10 | include: package:flutter_lints/flutter.yaml 11 | 12 | linter: 13 | # The lint rules applied to this project can be customized in the 14 | # section below to disable rules from the `package:flutter_lints/flutter.yaml` 15 | # included above or to enable additional rules. A list of all available lints 16 | # and their documentation is published at 17 | # https://dart-lang.github.io/linter/lints/index.html. 18 | # 19 | # Instead of disabling a lint rule for the entire project in the 20 | # section below, it can also be suppressed for a single line of code 21 | # or a specific dart file by using the `// ignore: name_of_lint` and 22 | # `// ignore_for_file: name_of_lint` syntax on the line or in the file 23 | # producing the lint. 24 | rules: 25 | # avoid_print: false # Uncomment to disable the `avoid_print` rule 26 | # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule 27 | 28 | # Additional information about this file can be found at 29 | # https://dart.dev/guides/language/analysis-options 30 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Iconly 2 | [![pub](https://img.shields.io/pub/v/iconly.svg?color=blue&label=iconly)](https://pub.dev/packages/iconly) 3 |
4 | 5 |
6 | 7 | 8 | Flutter package for using [Iconly](https://iconly.pro) Icons. Iconly is totally free, and you can use this package to bring these awesome icons to your Flutter project. 9 | 10 | This package has made from Iconly v2.3 version. following sets are currently available in this package: 11 | 12 | - Light 13 | - Bold 14 | - Broken 15 | 16 | **note:** since Flutter does not support multicolor Icons, we can not support **Bulk** Icon set. but we are going to implement that in the future. 17 | 18 | ## installation: 19 | Add the following line to your `pubspec.yaml` file, under the `dependencies:` section: 20 | 21 | ``` yaml 22 | dependencies: 23 | iconly: 24 | ``` 25 | 26 | ## Usage 27 | ``` dart 28 | import 'package:font_awesome_flutter/font_awesome_flutter.dart'; 29 | 30 | class IconlyWidget extends StatelessWidget { 31 | 32 | Widget build(BuildContext context) { 33 | return IconButton( 34 | icon: Icon(IconlyLight.search), 35 | onPressed: () { print("Pressed"); } 36 | ); 37 | } 38 | 39 | } 40 | ``` 41 | ## Check the Example and find your Icon 42 | We have created a sample project where you can find the icon you want and add it to your project. you can also run the example folder on mobile platforms and web. [Checkout This Link for more info.](https://6thsolution.github.io/flutter_iconly) -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | example 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | $(FLUTTER_BUILD_NAME) 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | $(FLUTTER_BUILD_NUMBER) 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UISupportedInterfaceOrientations 30 | 31 | UIInterfaceOrientationPortrait 32 | UIInterfaceOrientationLandscapeLeft 33 | UIInterfaceOrientationLandscapeRight 34 | 35 | UISupportedInterfaceOrientations~ipad 36 | 37 | UIInterfaceOrientationPortrait 38 | UIInterfaceOrientationPortraitUpsideDown 39 | UIInterfaceOrientationLandscapeLeft 40 | UIInterfaceOrientationLandscapeRight 41 | 42 | UIViewControllerBasedStatusBarAppearance 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Miscellaneous 2 | *.class 3 | *.log 4 | *.pyc 5 | *.swp 6 | .DS_Store 7 | .atom/ 8 | .buildlog/ 9 | .history 10 | .svn/ 11 | 12 | # IntelliJ related 13 | *.iml 14 | *.ipr 15 | *.iws 16 | .idea/ 17 | 18 | # The .vscode folder contains launch configuration and tasks you configure in 19 | # VS Code which you may wish to be included in version control, so this line 20 | # is commented out by default. 21 | # .vscode/ 22 | 23 | # Flutter/Dart/Pub related 24 | **/doc/api/ 25 | .dart_tool/ 26 | .flutter-plugins 27 | .flutter-plugins-dependencies 28 | .packages 29 | .pub-cache/ 30 | .pub/ 31 | build/ 32 | 33 | # Android related 34 | **/android/**/gradle-wrapper.jar 35 | **/android/.gradle 36 | **/android/captures/ 37 | **/android/gradlew 38 | **/android/gradlew.bat 39 | **/android/local.properties 40 | **/android/**/GeneratedPluginRegistrant.java 41 | 42 | # iOS/XCode related 43 | **/ios/**/*.mode1v3 44 | **/ios/**/*.mode2v3 45 | **/ios/**/*.moved-aside 46 | **/ios/**/*.pbxuser 47 | **/ios/**/*.perspectivev3 48 | **/ios/**/*sync/ 49 | **/ios/**/.sconsign.dblite 50 | **/ios/**/.tags* 51 | **/ios/**/.vagrant/ 52 | **/ios/**/DerivedData/ 53 | **/ios/**/Icon? 54 | **/ios/**/Pods/ 55 | **/ios/**/.symlinks/ 56 | **/ios/**/profile 57 | **/ios/**/xcuserdata 58 | **/ios/.generated/ 59 | **/ios/Flutter/App.framework 60 | **/ios/Flutter/Flutter.framework 61 | **/ios/Flutter/Flutter.podspec 62 | **/ios/Flutter/Generated.xcconfig 63 | **/ios/Flutter/ephemeral 64 | **/ios/Flutter/app.flx 65 | **/ios/Flutter/app.zip 66 | **/ios/Flutter/flutter_assets/ 67 | **/ios/Flutter/flutter_export_environment.sh 68 | **/ios/ServiceDefinitions.json 69 | **/ios/Runner/GeneratedPluginRegistrant.* 70 | 71 | # Exceptions to above rules. 72 | !**/ios/**/default.mode1v3 73 | !**/ios/**/default.mode2v3 74 | !**/ios/**/default.pbxuser 75 | !**/ios/**/default.perspectivev3 76 | 77 | # FVM files 78 | .fvm/flutter_sdk -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- 1 | def localProperties = new Properties() 2 | def localPropertiesFile = rootProject.file('local.properties') 3 | if (localPropertiesFile.exists()) { 4 | localPropertiesFile.withReader('UTF-8') { reader -> 5 | localProperties.load(reader) 6 | } 7 | } 8 | 9 | def flutterRoot = localProperties.getProperty('flutter.sdk') 10 | if (flutterRoot == null) { 11 | throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") 12 | } 13 | 14 | def flutterVersionCode = localProperties.getProperty('flutter.versionCode') 15 | if (flutterVersionCode == null) { 16 | flutterVersionCode = '1' 17 | } 18 | 19 | def flutterVersionName = localProperties.getProperty('flutter.versionName') 20 | if (flutterVersionName == null) { 21 | flutterVersionName = '1.0' 22 | } 23 | 24 | apply plugin: 'com.android.application' 25 | apply plugin: 'kotlin-android' 26 | apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" 27 | 28 | android { 29 | compileSdkVersion 30 30 | 31 | compileOptions { 32 | sourceCompatibility JavaVersion.VERSION_1_8 33 | targetCompatibility JavaVersion.VERSION_1_8 34 | } 35 | 36 | kotlinOptions { 37 | jvmTarget = '1.8' 38 | } 39 | 40 | sourceSets { 41 | main.java.srcDirs += 'src/main/kotlin' 42 | } 43 | 44 | defaultConfig { 45 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). 46 | applicationId "com.example.example" 47 | minSdkVersion 16 48 | targetSdkVersion 30 49 | versionCode flutterVersionCode.toInteger() 50 | versionName flutterVersionName 51 | } 52 | 53 | buildTypes { 54 | release { 55 | // TODO: Add your own signing config for the release build. 56 | // Signing with the debug keys for now, so `flutter run --release` works. 57 | signingConfig signingConfigs.debug 58 | } 59 | } 60 | } 61 | 62 | flutter { 63 | source '../..' 64 | } 65 | 66 | dependencies { 67 | implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" 68 | } 69 | -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 13 | 17 | 21 | 26 | 30 | 31 | 32 | 33 | 34 | 35 | 37 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /example/lib/widget/icon_item.dart: -------------------------------------------------------------------------------- 1 | import 'package:example/src/data/icon_detail.dart'; 2 | import 'package:flutter/material.dart'; 3 | 4 | const childAnimationDuration = Duration(milliseconds: 350); 5 | 6 | class IconItem extends StatefulWidget { 7 | const IconItem({ 8 | Key? key, 9 | required this.icon, 10 | this.selected = false, 11 | }) : super(key: key); 12 | 13 | final IconlyDetail icon; 14 | final bool selected; 15 | 16 | @override 17 | _IconItemState createState() => _IconItemState(); 18 | } 19 | 20 | class _IconItemState extends State { 21 | bool isHovered = false; 22 | 23 | EdgeInsets get margin => isHovered ? const EdgeInsets.all(4) : const EdgeInsets.all(8); 24 | 25 | @override 26 | void didUpdateWidget(covariant IconItem oldWidget) { 27 | if (widget.icon != oldWidget.icon) { 28 | isHovered = false; 29 | } 30 | 31 | super.didUpdateWidget(oldWidget); 32 | } 33 | 34 | @override 35 | Widget build(BuildContext context) { 36 | final scheme = Theme.of(context).colorScheme; 37 | 38 | final decoration = widget.selected 39 | ? BoxDecoration( 40 | gradient: LinearGradient(colors: [scheme.primary, scheme.primaryVariant]), 41 | boxShadow: [ 42 | BoxShadow( 43 | color: scheme.primaryVariant, 44 | blurRadius: 8, 45 | offset: const Offset(0, 4), 46 | ), 47 | ], 48 | borderRadius: BorderRadius.circular(18), 49 | ) 50 | : BoxDecoration( 51 | gradient: LinearGradient(colors: [scheme.onPrimary, Colors.grey[200]!]), 52 | border: Border.all( 53 | color: scheme.primaryVariant.withOpacity(.3), 54 | width: 1.8, 55 | ), 56 | borderRadius: BorderRadius.circular(18), 57 | ); 58 | 59 | return MouseRegion( 60 | onEnter: (_) => entered(true), 61 | onExit: (_) => entered(false), 62 | child: AnimatedContainer( 63 | duration: childAnimationDuration, 64 | curve: Curves.ease, 65 | margin: margin, 66 | decoration: decoration, 67 | child: Icon( 68 | widget.icon.iconData, 69 | color: widget.selected ? scheme.onPrimary : scheme.primary, 70 | ), 71 | ), 72 | ); 73 | } 74 | 75 | void entered(bool isEntered) { 76 | if (isHovered != isEntered) { 77 | setState(() { 78 | isHovered = isEntered; 79 | }); 80 | } 81 | } 82 | } 83 | -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "size" : "20x20", 5 | "idiom" : "iphone", 6 | "filename" : "Icon-App-20x20@2x.png", 7 | "scale" : "2x" 8 | }, 9 | { 10 | "size" : "20x20", 11 | "idiom" : "iphone", 12 | "filename" : "Icon-App-20x20@3x.png", 13 | "scale" : "3x" 14 | }, 15 | { 16 | "size" : "29x29", 17 | "idiom" : "iphone", 18 | "filename" : "Icon-App-29x29@1x.png", 19 | "scale" : "1x" 20 | }, 21 | { 22 | "size" : "29x29", 23 | "idiom" : "iphone", 24 | "filename" : "Icon-App-29x29@2x.png", 25 | "scale" : "2x" 26 | }, 27 | { 28 | "size" : "29x29", 29 | "idiom" : "iphone", 30 | "filename" : "Icon-App-29x29@3x.png", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "size" : "40x40", 35 | "idiom" : "iphone", 36 | "filename" : "Icon-App-40x40@2x.png", 37 | "scale" : "2x" 38 | }, 39 | { 40 | "size" : "40x40", 41 | "idiom" : "iphone", 42 | "filename" : "Icon-App-40x40@3x.png", 43 | "scale" : "3x" 44 | }, 45 | { 46 | "size" : "60x60", 47 | "idiom" : "iphone", 48 | "filename" : "Icon-App-60x60@2x.png", 49 | "scale" : "2x" 50 | }, 51 | { 52 | "size" : "60x60", 53 | "idiom" : "iphone", 54 | "filename" : "Icon-App-60x60@3x.png", 55 | "scale" : "3x" 56 | }, 57 | { 58 | "size" : "20x20", 59 | "idiom" : "ipad", 60 | "filename" : "Icon-App-20x20@1x.png", 61 | "scale" : "1x" 62 | }, 63 | { 64 | "size" : "20x20", 65 | "idiom" : "ipad", 66 | "filename" : "Icon-App-20x20@2x.png", 67 | "scale" : "2x" 68 | }, 69 | { 70 | "size" : "29x29", 71 | "idiom" : "ipad", 72 | "filename" : "Icon-App-29x29@1x.png", 73 | "scale" : "1x" 74 | }, 75 | { 76 | "size" : "29x29", 77 | "idiom" : "ipad", 78 | "filename" : "Icon-App-29x29@2x.png", 79 | "scale" : "2x" 80 | }, 81 | { 82 | "size" : "40x40", 83 | "idiom" : "ipad", 84 | "filename" : "Icon-App-40x40@1x.png", 85 | "scale" : "1x" 86 | }, 87 | { 88 | "size" : "40x40", 89 | "idiom" : "ipad", 90 | "filename" : "Icon-App-40x40@2x.png", 91 | "scale" : "2x" 92 | }, 93 | { 94 | "size" : "76x76", 95 | "idiom" : "ipad", 96 | "filename" : "Icon-App-76x76@1x.png", 97 | "scale" : "1x" 98 | }, 99 | { 100 | "size" : "76x76", 101 | "idiom" : "ipad", 102 | "filename" : "Icon-App-76x76@2x.png", 103 | "scale" : "2x" 104 | }, 105 | { 106 | "size" : "83.5x83.5", 107 | "idiom" : "ipad", 108 | "filename" : "Icon-App-83.5x83.5@2x.png", 109 | "scale" : "2x" 110 | }, 111 | { 112 | "size" : "1024x1024", 113 | "idiom" : "ios-marketing", 114 | "filename" : "Icon-App-1024x1024@1x.png", 115 | "scale" : "1x" 116 | } 117 | ], 118 | "info" : { 119 | "version" : 1, 120 | "author" : "xcode" 121 | } 122 | } 123 | -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 39 | 40 | 41 | 42 | 43 | 44 | 54 | 56 | 62 | 63 | 64 | 65 | 66 | 67 | 73 | 75 | 81 | 82 | 83 | 84 | 86 | 87 | 90 | 91 | 92 | -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: example 2 | description: A new Flutter project. 3 | 4 | # The following line prevents the package from being accidentally published to 5 | # pub.dev using `flutter pub publish`. This is preferred for private packages. 6 | publish_to: 'none' # Remove this line if you wish to publish to pub.dev 7 | 8 | # The following defines the version and build number for your application. 9 | # A version number is three numbers separated by dots, like 1.2.43 10 | # followed by an optional build number separated by a +. 11 | # Both the version and the builder number may be overridden in flutter 12 | # build by specifying --build-name and --build-number, respectively. 13 | # In Android, build-name is used as versionName while build-number used as versionCode. 14 | # Read more about Android versioning at https://developer.android.com/studio/publish/versioning 15 | # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. 16 | # Read more about iOS versioning at 17 | # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html 18 | version: 1.0.0+1 19 | 20 | environment: 21 | sdk: ">=2.12.0 <3.0.0" 22 | 23 | # Dependencies specify other packages that your package needs in order to work. 24 | # To automatically upgrade your package dependencies to the latest versions 25 | # consider running `flutter pub upgrade --major-versions`. Alternatively, 26 | # dependencies can be manually updated by changing the version numbers below to 27 | # the latest version available on pub.dev. To see which dependencies have newer 28 | # versions available, run `flutter pub outdated`. 29 | dependencies: 30 | flutter: 31 | sdk: flutter 32 | iconly: 33 | path: ../ 34 | 35 | 36 | # The following adds the Cupertino Icons font to your application. 37 | # Use with the CupertinoIcons class for iOS style icons. 38 | cupertino_icons: ^1.0.2 39 | 40 | dev_dependencies: 41 | flutter_test: 42 | sdk: flutter 43 | 44 | # The "flutter_lints" package below contains a set of recommended lints to 45 | # encourage good coding practices. The lint set provided by the package is 46 | # activated in the `analysis_options.yaml` file located at the root of your 47 | # package. See that file for information about deactivating specific lint 48 | # rules and activating additional ones. 49 | flutter_lints: ^1.0.0 50 | 51 | # For information on the generic Dart part of this file, see the 52 | # following page: https://dart.dev/tools/pub/pubspec 53 | 54 | # The following section is specific to Flutter. 55 | flutter: 56 | 57 | # The following line ensures that the Material Icons font is 58 | # included with your application, so that you can use the icons in 59 | # the material Icons class. 60 | uses-material-design: true 61 | 62 | assets: 63 | - assets/image/banner.png 64 | 65 | # An image asset can refer to one or more resolution-specific "variants", see 66 | # https://flutter.dev/assets-and-images/#resolution-aware. 67 | 68 | # For details regarding adding assets from package dependencies, see 69 | # https://flutter.dev/assets-and-images/#from-packages 70 | 71 | # To add custom fonts to your application, add a fonts section here, 72 | # in this "flutter" section. Each entry in this list should have a 73 | # "family" key with the font family name, and a "fonts" key with a 74 | # list giving the asset and other descriptors for the font. For 75 | # example: 76 | # fonts: 77 | # - family: Schyler 78 | # fonts: 79 | # - asset: fonts/Schyler-Regular.ttf 80 | # - asset: fonts/Schyler-Italic.ttf 81 | # style: italic 82 | # - family: Trajan Pro 83 | # fonts: 84 | # - asset: fonts/TrajanPro.ttf 85 | # - asset: fonts/TrajanPro_Bold.ttf 86 | # weight: 700 87 | # 88 | # For details regarding fonts from package dependencies, 89 | # see https://flutter.dev/custom-fonts/#from-packages 90 | -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- 1 | # Generated by pub 2 | # See https://dart.dev/tools/pub/glossary#lockfile 3 | packages: 4 | async: 5 | dependency: transitive 6 | description: 7 | name: async 8 | url: "https://pub.dartlang.org" 9 | source: hosted 10 | version: "2.7.0" 11 | boolean_selector: 12 | dependency: transitive 13 | description: 14 | name: boolean_selector 15 | url: "https://pub.dartlang.org" 16 | source: hosted 17 | version: "2.1.0" 18 | characters: 19 | dependency: transitive 20 | description: 21 | name: characters 22 | url: "https://pub.dartlang.org" 23 | source: hosted 24 | version: "1.1.0" 25 | charcode: 26 | dependency: transitive 27 | description: 28 | name: charcode 29 | url: "https://pub.dartlang.org" 30 | source: hosted 31 | version: "1.2.0" 32 | clock: 33 | dependency: transitive 34 | description: 35 | name: clock 36 | url: "https://pub.dartlang.org" 37 | source: hosted 38 | version: "1.1.0" 39 | collection: 40 | dependency: transitive 41 | description: 42 | name: collection 43 | url: "https://pub.dartlang.org" 44 | source: hosted 45 | version: "1.15.0" 46 | fake_async: 47 | dependency: transitive 48 | description: 49 | name: fake_async 50 | url: "https://pub.dartlang.org" 51 | source: hosted 52 | version: "1.2.0" 53 | flutter: 54 | dependency: "direct main" 55 | description: flutter 56 | source: sdk 57 | version: "0.0.0" 58 | flutter_test: 59 | dependency: "direct dev" 60 | description: flutter 61 | source: sdk 62 | version: "0.0.0" 63 | matcher: 64 | dependency: transitive 65 | description: 66 | name: matcher 67 | url: "https://pub.dartlang.org" 68 | source: hosted 69 | version: "0.12.10" 70 | meta: 71 | dependency: transitive 72 | description: 73 | name: meta 74 | url: "https://pub.dartlang.org" 75 | source: hosted 76 | version: "1.4.0" 77 | path: 78 | dependency: transitive 79 | description: 80 | name: path 81 | url: "https://pub.dartlang.org" 82 | source: hosted 83 | version: "1.8.0" 84 | sky_engine: 85 | dependency: transitive 86 | description: flutter 87 | source: sdk 88 | version: "0.0.99" 89 | source_span: 90 | dependency: transitive 91 | description: 92 | name: source_span 93 | url: "https://pub.dartlang.org" 94 | source: hosted 95 | version: "1.8.1" 96 | stack_trace: 97 | dependency: transitive 98 | description: 99 | name: stack_trace 100 | url: "https://pub.dartlang.org" 101 | source: hosted 102 | version: "1.10.0" 103 | stream_channel: 104 | dependency: transitive 105 | description: 106 | name: stream_channel 107 | url: "https://pub.dartlang.org" 108 | source: hosted 109 | version: "2.1.0" 110 | string_scanner: 111 | dependency: transitive 112 | description: 113 | name: string_scanner 114 | url: "https://pub.dartlang.org" 115 | source: hosted 116 | version: "1.1.0" 117 | term_glyph: 118 | dependency: transitive 119 | description: 120 | name: term_glyph 121 | url: "https://pub.dartlang.org" 122 | source: hosted 123 | version: "1.2.0" 124 | test_api: 125 | dependency: transitive 126 | description: 127 | name: test_api 128 | url: "https://pub.dartlang.org" 129 | source: hosted 130 | version: "0.4.0" 131 | typed_data: 132 | dependency: transitive 133 | description: 134 | name: typed_data 135 | url: "https://pub.dartlang.org" 136 | source: hosted 137 | version: "1.3.0" 138 | vector_math: 139 | dependency: transitive 140 | description: 141 | name: vector_math 142 | url: "https://pub.dartlang.org" 143 | source: hosted 144 | version: "2.1.0" 145 | sdks: 146 | dart: ">=2.12.0 <3.0.0" 147 | flutter: ">=1.17.0" 148 | -------------------------------------------------------------------------------- /example/pubspec.lock: -------------------------------------------------------------------------------- 1 | # Generated by pub 2 | # See https://dart.dev/tools/pub/glossary#lockfile 3 | packages: 4 | async: 5 | dependency: transitive 6 | description: 7 | name: async 8 | url: "https://pub.dartlang.org" 9 | source: hosted 10 | version: "2.7.0" 11 | boolean_selector: 12 | dependency: transitive 13 | description: 14 | name: boolean_selector 15 | url: "https://pub.dartlang.org" 16 | source: hosted 17 | version: "2.1.0" 18 | characters: 19 | dependency: transitive 20 | description: 21 | name: characters 22 | url: "https://pub.dartlang.org" 23 | source: hosted 24 | version: "1.1.0" 25 | charcode: 26 | dependency: transitive 27 | description: 28 | name: charcode 29 | url: "https://pub.dartlang.org" 30 | source: hosted 31 | version: "1.2.0" 32 | clock: 33 | dependency: transitive 34 | description: 35 | name: clock 36 | url: "https://pub.dartlang.org" 37 | source: hosted 38 | version: "1.1.0" 39 | collection: 40 | dependency: transitive 41 | description: 42 | name: collection 43 | url: "https://pub.dartlang.org" 44 | source: hosted 45 | version: "1.15.0" 46 | cupertino_icons: 47 | dependency: "direct main" 48 | description: 49 | name: cupertino_icons 50 | url: "https://pub.dartlang.org" 51 | source: hosted 52 | version: "1.0.3" 53 | fake_async: 54 | dependency: transitive 55 | description: 56 | name: fake_async 57 | url: "https://pub.dartlang.org" 58 | source: hosted 59 | version: "1.2.0" 60 | flutter: 61 | dependency: "direct main" 62 | description: flutter 63 | source: sdk 64 | version: "0.0.0" 65 | flutter_lints: 66 | dependency: "direct dev" 67 | description: 68 | name: flutter_lints 69 | url: "https://pub.dartlang.org" 70 | source: hosted 71 | version: "1.0.4" 72 | flutter_test: 73 | dependency: "direct dev" 74 | description: flutter 75 | source: sdk 76 | version: "0.0.0" 77 | iconly: 78 | dependency: "direct main" 79 | description: 80 | path: ".." 81 | relative: true 82 | source: path 83 | version: "1.0.1" 84 | lints: 85 | dependency: transitive 86 | description: 87 | name: lints 88 | url: "https://pub.dartlang.org" 89 | source: hosted 90 | version: "1.0.1" 91 | matcher: 92 | dependency: transitive 93 | description: 94 | name: matcher 95 | url: "https://pub.dartlang.org" 96 | source: hosted 97 | version: "0.12.10" 98 | meta: 99 | dependency: transitive 100 | description: 101 | name: meta 102 | url: "https://pub.dartlang.org" 103 | source: hosted 104 | version: "1.4.0" 105 | path: 106 | dependency: transitive 107 | description: 108 | name: path 109 | url: "https://pub.dartlang.org" 110 | source: hosted 111 | version: "1.8.0" 112 | sky_engine: 113 | dependency: transitive 114 | description: flutter 115 | source: sdk 116 | version: "0.0.99" 117 | source_span: 118 | dependency: transitive 119 | description: 120 | name: source_span 121 | url: "https://pub.dartlang.org" 122 | source: hosted 123 | version: "1.8.1" 124 | stack_trace: 125 | dependency: transitive 126 | description: 127 | name: stack_trace 128 | url: "https://pub.dartlang.org" 129 | source: hosted 130 | version: "1.10.0" 131 | stream_channel: 132 | dependency: transitive 133 | description: 134 | name: stream_channel 135 | url: "https://pub.dartlang.org" 136 | source: hosted 137 | version: "2.1.0" 138 | string_scanner: 139 | dependency: transitive 140 | description: 141 | name: string_scanner 142 | url: "https://pub.dartlang.org" 143 | source: hosted 144 | version: "1.1.0" 145 | term_glyph: 146 | dependency: transitive 147 | description: 148 | name: term_glyph 149 | url: "https://pub.dartlang.org" 150 | source: hosted 151 | version: "1.2.0" 152 | test_api: 153 | dependency: transitive 154 | description: 155 | name: test_api 156 | url: "https://pub.dartlang.org" 157 | source: hosted 158 | version: "0.4.0" 159 | typed_data: 160 | dependency: transitive 161 | description: 162 | name: typed_data 163 | url: "https://pub.dartlang.org" 164 | source: hosted 165 | version: "1.3.0" 166 | vector_math: 167 | dependency: transitive 168 | description: 169 | name: vector_math 170 | url: "https://pub.dartlang.org" 171 | source: hosted 172 | version: "2.1.0" 173 | sdks: 174 | dart: ">=2.12.0 <3.0.0" 175 | flutter: ">=1.17.0" 176 | -------------------------------------------------------------------------------- /example/web/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 18 | 19 | 20 | Flutter Iconly 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 33 | 34 | 35 | 36 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 52 | 116 | 117 | 118 | -------------------------------------------------------------------------------- /lib/src/iconly_bold.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/widgets.dart'; 2 | import 'package:iconly/src/utils/constants.dart'; 3 | 4 | class BoldData extends IconData { 5 | static const String _fontFamily = 'IconlyBold'; 6 | 7 | const BoldData(int code) 8 | : super( 9 | code, 10 | fontFamily: _fontFamily, 11 | fontPackage: packageName, 12 | ); 13 | } 14 | 15 | class IconlyBold { 16 | IconlyBold._(); 17 | 18 | static const IconData activity = BoldData(0xe900); 19 | static const IconData add_user = BoldData(0xe901); 20 | static const IconData arrow_down = BoldData(0xe902); 21 | static const IconData arrow_down_2 = BoldData(0xe903); 22 | static const IconData arrow_down_3 = BoldData(0xe904); 23 | static const IconData arrow_down_circle = BoldData(0xe905); 24 | static const IconData arrow_down_square = BoldData(0xe906); 25 | static const IconData arrow_left = BoldData(0xe907); 26 | static const IconData arrow_left_2 = BoldData(0xe908); 27 | static const IconData arrow_left_3 = BoldData(0xe909); 28 | static const IconData arrow_left_circle = BoldData(0xe90a); 29 | static const IconData arrow_left_square = BoldData(0xe90b); 30 | static const IconData arrow_right = BoldData(0xe90c); 31 | static const IconData arrow_right_2 = BoldData(0xe90d); 32 | static const IconData arrow_right_3 = BoldData(0xe90e); 33 | static const IconData arrow_right_circle = BoldData(0xe90f); 34 | static const IconData arrow_right_square = BoldData(0xe910); 35 | static const IconData arrow_up = BoldData(0xe911); 36 | static const IconData arrow_up_2 = BoldData(0xe912); 37 | static const IconData arrow_up_3 = BoldData(0xe913); 38 | static const IconData arrow_up_circle = BoldData(0xe914); 39 | static const IconData arrow_up_square = BoldData(0xe915); 40 | static const IconData bag = BoldData(0xe916); 41 | static const IconData bag_2 = BoldData(0xe917); 42 | static const IconData bookmark = BoldData(0xe918); 43 | static const IconData buy = BoldData(0xe919); 44 | static const IconData calendar = BoldData(0xe91a); 45 | static const IconData call = BoldData(0xe91b); 46 | static const IconData call_missed = BoldData(0xe91c); 47 | static const IconData call_silent = BoldData(0xe91d); 48 | static const IconData calling = BoldData(0xe91e); 49 | static const IconData camera = BoldData(0xe91f); 50 | static const IconData category = BoldData(0xe920); 51 | static const IconData chart = BoldData(0xe921); 52 | static const IconData chat = BoldData(0xe922); 53 | static const IconData close_square = BoldData(0xe923); 54 | static const IconData danger = BoldData(0xe924); 55 | static const IconData delete = BoldData(0xe925); 56 | static const IconData discount = BoldData(0xe926); 57 | static const IconData discovery = BoldData(0xe927); 58 | static const IconData document = BoldData(0xe928); 59 | static const IconData download = BoldData(0xe929); 60 | static const IconData edit = BoldData(0xe92a); 61 | static const IconData editSquare = BoldData(0xe92b); 62 | static const IconData filter = BoldData(0xe92c); 63 | static const IconData filter_2 = BoldData(0xe92d); 64 | static const IconData folder = BoldData(0xe92e); 65 | static const IconData game = BoldData(0xe92f); 66 | static const IconData graph = BoldData(0xe930); 67 | static const IconData heart = BoldData(0xe931); 68 | static const IconData hide = BoldData(0xe932); 69 | static const IconData home = BoldData(0xe933); 70 | static const IconData image = BoldData(0xe934); 71 | static const IconData image_2 = BoldData(0xe935); 72 | static const IconData info_circle = BoldData(0xe936); 73 | static const IconData info_square = BoldData(0xe937); 74 | static const IconData location = BoldData(0xe938); 75 | static const IconData lock = BoldData(0xe939); 76 | static const IconData login = BoldData(0xe93a); 77 | static const IconData logout = BoldData(0xe93b); 78 | static const IconData message = BoldData(0xe93c); 79 | static const IconData more_circle = BoldData(0xe93d); 80 | static const IconData more_square = BoldData(0xe93e); 81 | static const IconData notification = BoldData(0xe93f); 82 | static const IconData paper = BoldData(0xe940); 83 | static const IconData paper_download = BoldData(0xe941); 84 | static const IconData paper_fail = BoldData(0xe942); 85 | static const IconData paper_negative = BoldData(0xe943); 86 | static const IconData paper_plus = BoldData(0xe944); 87 | static const IconData paper_upload = BoldData(0xe945); 88 | static const IconData password = BoldData(0xe946); 89 | static const IconData play = BoldData(0xe947); 90 | static const IconData plus = BoldData(0xe948); 91 | static const IconData profile = BoldData(0xe949); 92 | static const IconData scan = BoldData(0xe94a); 93 | static const IconData search = BoldData(0xe94b); 94 | static const IconData send = BoldData(0xe94c); 95 | static const IconData setting = BoldData(0xe94d); 96 | static const IconData shield_done = BoldData(0xe94e); 97 | static const IconData shield_fail = BoldData(0xe94f); 98 | static const IconData show = BoldData(0xe950); 99 | static const IconData star = BoldData(0xe951); 100 | static const IconData swap = BoldData(0xe952); 101 | static const IconData tick_square = BoldData(0xe953); 102 | static const IconData ticket = BoldData(0xe954); 103 | static const IconData ticket_star = BoldData(0xe955); 104 | static const IconData time_circle = BoldData(0xe956); 105 | static const IconData time_square = BoldData(0xe957); 106 | static const IconData unlock = BoldData(0xe958); 107 | static const IconData upload = BoldData(0xe959); 108 | static const IconData user_2 = BoldData(0xe95a); 109 | static const IconData user_3 = BoldData(0xe95b); 110 | static const IconData video = BoldData(0xe95c); 111 | static const IconData voice = BoldData(0xe95d); 112 | static const IconData voice_2 = BoldData(0xe95e); 113 | static const IconData volume_down = BoldData(0xe95f); 114 | static const IconData volume_off = BoldData(0xe960); 115 | static const IconData volume_up = BoldData(0xe961); 116 | static const IconData wallet = BoldData(0xe962); 117 | static const IconData work = BoldData(0xe963); 118 | } 119 | -------------------------------------------------------------------------------- /lib/src/iconly_light.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/widgets.dart'; 2 | import 'package:iconly/src/utils/constants.dart'; 3 | 4 | class LightData extends IconData { 5 | static const String _fontFamily = 'IconlyLight'; 6 | 7 | const LightData(int code) 8 | : super( 9 | code, 10 | fontFamily: _fontFamily, 11 | fontPackage: packageName, 12 | ); 13 | } 14 | 15 | class IconlyLight { 16 | IconlyLight._(); 17 | 18 | static const IconData activity = LightData(0xe900); 19 | static const IconData add_user = LightData(0xe901); 20 | static const IconData arrow_down = LightData(0xe902); 21 | static const IconData arrow_down_2 = LightData(0xe903); 22 | static const IconData arrow_down_3 = LightData(0xe904); 23 | static const IconData arrow_down_circle = LightData(0xe905); 24 | static const IconData arrow_down_square = LightData(0xe906); 25 | static const IconData arrow_left = LightData(0xe907); 26 | static const IconData arrow_left_2 = LightData(0xe908); 27 | static const IconData arrow_left_3 = LightData(0xe909); 28 | static const IconData arrow_left_circle = LightData(0xe90a); 29 | static const IconData arrow_left_square = LightData(0xe90b); 30 | static const IconData arrow_right = LightData(0xe90c); 31 | static const IconData arrow_right_2 = LightData(0xe90d); 32 | static const IconData arrow_right_3 = LightData(0xe90e); 33 | static const IconData arrow_right_circle = LightData(0xe90f); 34 | static const IconData arrow_right_square = LightData(0xe910); 35 | static const IconData arrow_up = LightData(0xe911); 36 | static const IconData arrow_up_2 = LightData(0xe912); 37 | static const IconData arrow_up_3 = LightData(0xe913); 38 | static const IconData arrow_up_circle = LightData(0xe914); 39 | static const IconData arrow_up_square = LightData(0x1f405); 40 | static const IconData bag = LightData(0xe916); 41 | static const IconData bag_2 = LightData(0xe917); 42 | static const IconData bookmark = LightData(0xe918); 43 | static const IconData buy = LightData(0xe919); 44 | static const IconData calendar = LightData(0xe91a); 45 | static const IconData call = LightData(0xe91b); 46 | static const IconData call_missed = LightData(0xe91c); 47 | static const IconData call_silent = LightData(0xe91d); 48 | static const IconData calling = LightData(0xe91e); 49 | static const IconData camera = LightData(0xe91f); 50 | static const IconData category = LightData(0xe920); 51 | static const IconData chart = LightData(0xe921); 52 | static const IconData chat = LightData(0xe922); 53 | static const IconData close_square = LightData(0xe923); 54 | static const IconData danger = LightData(0xe924); 55 | static const IconData delete = LightData(0xe925); 56 | static const IconData discount = LightData(0xe926); 57 | static const IconData discovery = LightData(0xe927); 58 | static const IconData document = LightData(0xe928); 59 | static const IconData download = LightData(0xe929); 60 | static const IconData edit = LightData(0xe92a); 61 | static const IconData edit_square = LightData(0xe92b); 62 | static const IconData filter = LightData(0xe92c); 63 | static const IconData filter_2 = LightData(0xe92d); 64 | static const IconData folder = LightData(0xe92e); 65 | static const IconData game = LightData(0xe92f); 66 | static const IconData graph = LightData(0xe930); 67 | static const IconData heart = LightData(0xe931); 68 | static const IconData hide = LightData(0xe932); 69 | static const IconData home = LightData(0xe933); 70 | static const IconData image = LightData(0xe934); 71 | static const IconData image_2 = LightData(0xe935); 72 | static const IconData info_circle = LightData(0xe936); 73 | static const IconData info_square = LightData(0xe937); 74 | static const IconData location = LightData(0xe938); 75 | static const IconData lock = LightData(0xe939); 76 | static const IconData login = LightData(0xe93a); 77 | static const IconData logout = LightData(0xe93b); 78 | static const IconData message = LightData(0xe93c); 79 | static const IconData more_circle = LightData(0xe93d); 80 | static const IconData more_square = LightData(0xe93e); 81 | static const IconData notification = LightData(0xe93f); 82 | static const IconData paper = LightData(0xe940); 83 | static const IconData paper_download = LightData(0xe941); 84 | static const IconData paper_fail = LightData(0xe942); 85 | static const IconData paper_negative = LightData(0xe943); 86 | static const IconData paper_plus = LightData(0xe944); 87 | static const IconData paper_upload = LightData(0xe945); 88 | static const IconData password = LightData(0xe946); 89 | static const IconData play = LightData(0xe947); 90 | static const IconData plus = LightData(0xe948); 91 | static const IconData profile = LightData(0xe949); 92 | static const IconData scan = LightData(0xe94a); 93 | static const IconData search = LightData(0xe94b); 94 | static const IconData send = LightData(0xe94c); 95 | static const IconData setting = LightData(0xe94d); 96 | static const IconData shield_done = LightData(0xe94e); 97 | static const IconData shield_fail = LightData(0xe94f); 98 | static const IconData show = LightData(0xe950); 99 | static const IconData star = LightData(0xe951); 100 | static const IconData swap = LightData(0xe952); 101 | static const IconData tick_square = LightData(0xe953); 102 | static const IconData ticket = LightData(0xe954); 103 | static const IconData ticket_star = LightData(0xe955); 104 | static const IconData time_circle = LightData(0xe956); 105 | static const IconData time_square = LightData(0xe957); 106 | static const IconData unlock = LightData(0xe958); 107 | static const IconData upload = LightData(0xe959); 108 | static const IconData user = LightData(0xe95a); 109 | static const IconData user_1 = LightData(0xe95b); 110 | static const IconData video = LightData(0xe95c); 111 | static const IconData voice = LightData(0xe95d); 112 | static const IconData voice_2 = LightData(0xe95e); 113 | static const IconData volume_down = LightData(0xe95f); 114 | static const IconData volume_off = LightData(0xe960); 115 | static const IconData volume_up = LightData(0xe961); 116 | static const IconData wallet = LightData(0xe962); 117 | static const IconData work = LightData(0xe963); 118 | } 119 | -------------------------------------------------------------------------------- /lib/src/iconly_broken.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/widgets.dart'; 2 | import 'package:iconly/src/utils/constants.dart'; 3 | 4 | class BrokenData extends IconData { 5 | static const String _fontFamily = 'IconlyBroken'; 6 | 7 | const BrokenData(int code) 8 | : super( 9 | code, 10 | fontFamily: _fontFamily, 11 | fontPackage: packageName, 12 | ); 13 | } 14 | 15 | class IconlyBroken { 16 | IconlyBroken._(); 17 | 18 | static const IconData activity = BrokenData(0xe900); 19 | static const IconData add_user = BrokenData(0xe901); 20 | static const IconData arrow_down = BrokenData(0xe902); 21 | static const IconData arrow_down_2 = BrokenData(0xe903); 22 | static const IconData arrow_down_3 = BrokenData(0xe904); 23 | static const IconData arrow_down_circle = BrokenData(0xe905); 24 | static const IconData arrow_down_square = BrokenData(0xe906); 25 | static const IconData arrow_left = BrokenData(0xe907); 26 | static const IconData arrow_left_2 = BrokenData(0xe908); 27 | static const IconData arrow_left_3 = BrokenData(0xe909); 28 | static const IconData arrow_left_circle = BrokenData(0xe90a); 29 | static const IconData arrow_left_square = BrokenData(0xe90b); 30 | static const IconData arrow_right = BrokenData(0xe90c); 31 | static const IconData arrow_right_2 = BrokenData(0xe90d); 32 | static const IconData arrow_right_3 = BrokenData(0xe90e); 33 | static const IconData arrow_right_circle = BrokenData(0xe90f); 34 | static const IconData arrow_right_square = BrokenData(0xe910); 35 | static const IconData arrow_up = BrokenData(0xe911); 36 | static const IconData arrow_up_2 = BrokenData(0xe912); 37 | static const IconData arrow_up_3 = BrokenData(0xe913); 38 | static const IconData arrow_up_circle = BrokenData(0xe914); 39 | static const IconData arrow_up_square = BrokenData(0xe915); 40 | static const IconData bag = BrokenData(0xe916); 41 | static const IconData bag_2 = BrokenData(0xe917); 42 | static const IconData bookmark = BrokenData(0xe918); 43 | static const IconData buy = BrokenData(0xe919); 44 | static const IconData calendar = BrokenData(0xe91a); 45 | static const IconData call = BrokenData(0xe91b); 46 | static const IconData call_missed = BrokenData(0xe91c); 47 | static const IconData call_silent = BrokenData(0xe91d); 48 | static const IconData calling = BrokenData(0xe91e); 49 | static const IconData camera = BrokenData(0xe91f); 50 | static const IconData category = BrokenData(0xe920); 51 | static const IconData chart = BrokenData(0xe921); 52 | static const IconData chat = BrokenData(0xe922); 53 | static const IconData close_square = BrokenData(0xe923); 54 | static const IconData danger = BrokenData(0xe924); 55 | static const IconData delete = BrokenData(0xe925); 56 | static const IconData discount = BrokenData(0xe926); 57 | static const IconData discovery = BrokenData(0xe927); 58 | static const IconData document = BrokenData(0xe928); 59 | static const IconData download = BrokenData(0xe929); 60 | static const IconData edit = BrokenData(0xe92a); 61 | static const IconData edit_square = BrokenData(0xe92b); 62 | static const IconData filter = BrokenData(0xe92c); 63 | static const IconData filter_2 = BrokenData(0xe92d); 64 | static const IconData folder = BrokenData(0xe92e); 65 | static const IconData game = BrokenData(0xe92f); 66 | static const IconData graph = BrokenData(0xe930); 67 | static const IconData heart = BrokenData(0xe931); 68 | static const IconData hide = BrokenData(0xe932); 69 | static const IconData home = BrokenData(0xe933); 70 | static const IconData image = BrokenData(0xe934); 71 | static const IconData image_2 = BrokenData(0xe935); 72 | static const IconData info_circle = BrokenData(0xe936); 73 | static const IconData info_square = BrokenData(0xe937); 74 | static const IconData location = BrokenData(0xe938); 75 | static const IconData lock = BrokenData(0xe939); 76 | static const IconData login = BrokenData(0xe93a); 77 | static const IconData logout = BrokenData(0xe93b); 78 | static const IconData message = BrokenData(0xe93c); 79 | static const IconData more_circle = BrokenData(0xe93d); 80 | static const IconData more_square = BrokenData(0xe93e); 81 | static const IconData notification = BrokenData(0xe93f); 82 | static const IconData paper = BrokenData(0xe940); 83 | static const IconData paper_download = BrokenData(0xe941); 84 | static const IconData paper_fail = BrokenData(0xe942); 85 | static const IconData paper_negative = BrokenData(0xe943); 86 | static const IconData paper_plus = BrokenData(0xe944); 87 | static const IconData paper_upload = BrokenData(0xe945); 88 | static const IconData password = BrokenData(0xe946); 89 | static const IconData play = BrokenData(0xe947); 90 | static const IconData plus = BrokenData(0xe948); 91 | static const IconData profile = BrokenData(0xe949); 92 | static const IconData scan = BrokenData(0xe94a); 93 | static const IconData search = BrokenData(0xe94b); 94 | static const IconData send = BrokenData(0xe94c); 95 | static const IconData setting = BrokenData(0xe94d); 96 | static const IconData shield_done = BrokenData(0xe94e); 97 | static const IconData shield_fail = BrokenData(0xe94f); 98 | static const IconData show = BrokenData(0xe950); 99 | static const IconData star = BrokenData(0xe951); 100 | static const IconData swap = BrokenData(0xe952); 101 | static const IconData tick_square = BrokenData(0xe953); 102 | static const IconData ticket = BrokenData(0xe954); 103 | static const IconData ticket_star = BrokenData(0xe955); 104 | static const IconData time_circle = BrokenData(0xe956); 105 | static const IconData times_quare = BrokenData(0xe957); 106 | static const IconData unlock = BrokenData(0xe958); 107 | static const IconData upload = BrokenData(0xe959); 108 | static const IconData user_2 = BrokenData(0xe95a); 109 | static const IconData user_3 = BrokenData(0xe95b); 110 | static const IconData video = BrokenData(0xe95c); 111 | static const IconData voice = BrokenData(0xe95d); 112 | static const IconData voice_2 = BrokenData(0xe95e); 113 | static const IconData volume_down = BrokenData(0xe95f); 114 | static const IconData volume_off = BrokenData(0xe960); 115 | static const IconData volume_up = BrokenData(0xe961); 116 | static const IconData wallet = BrokenData(0xe962); 117 | static const IconData work = BrokenData(0xe963); 118 | } 119 | -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- 1 | import 'package:example/src/data/icon_detail.dart'; 2 | import 'package:example/src/data/icons.dart'; 3 | import 'package:example/widget/icon_item.dart'; 4 | import 'package:flutter/cupertino.dart'; 5 | import 'package:flutter/material.dart'; 6 | import 'package:flutter/services.dart'; 7 | import 'package:iconly/iconly.dart'; 8 | 9 | void main() { 10 | runApp(const IconlyExampleApp()); 11 | } 12 | 13 | class IconlyExampleApp extends StatelessWidget { 14 | const IconlyExampleApp({Key? key}) : super(key: key); 15 | 16 | @override 17 | Widget build(BuildContext context) { 18 | return MaterialApp( 19 | title: 'Iconly Example', 20 | theme: ThemeData( 21 | colorScheme: const ColorScheme.light( 22 | primary: Color(0xff4e54c8), 23 | primaryVariant: Color(0xff8f94fb), 24 | ), 25 | ), 26 | home: const HomePage(), 27 | ); 28 | } 29 | } 30 | 31 | class HomePage extends StatefulWidget { 32 | const HomePage({Key? key}) : super(key: key); 33 | 34 | @override 35 | _HomePageState createState() => _HomePageState(); 36 | } 37 | 38 | class _HomePageState extends State { 39 | IconlyDetail? _selectedIcon; 40 | 41 | String _searchText = ''; 42 | 43 | @override 44 | Widget build(BuildContext context) { 45 | final lightData = _filterIcons(lightIcons); 46 | final boldData = _filterIcons(boldIcons); 47 | final brokenData = _filterIcons(brokenIcons); 48 | 49 | return Scaffold( 50 | floatingActionButton: FloatingActionButton.extended( 51 | onPressed: () { 52 | if (_selectedIcon == null) { 53 | ScaffoldMessenger.of(context) 54 | ..clearSnackBars() 55 | ..showSnackBar( 56 | const SnackBar( 57 | content: Text('Select an Icon first. then you can copy it to clipboard'), 58 | ), 59 | ); 60 | } else { 61 | final clipboardValue = '${_selectedIcon!.type}.${_selectedIcon!.title}'; 62 | Clipboard.setData( 63 | ClipboardData(text: clipboardValue), 64 | ); 65 | ScaffoldMessenger.of(context) 66 | ..clearSnackBars() 67 | ..showSnackBar( 68 | SnackBar( 69 | content: Text('Icon Has been copied to clipboard: $clipboardValue'), 70 | ), 71 | ); 72 | } 73 | }, 74 | label: Row( 75 | children: const [ 76 | Icon(IconlyBroken.paper_plus), 77 | SizedBox(width: 4), 78 | Text('Copy'), 79 | ], 80 | ), 81 | ), 82 | body: Padding( 83 | padding: const EdgeInsets.symmetric(horizontal: 32), 84 | child: CustomScrollView( 85 | slivers: [ 86 | SliverAppBar( 87 | backgroundColor: Colors.transparent, 88 | shadowColor: Colors.transparent, 89 | expandedHeight: 230, 90 | pinned: false, 91 | automaticallyImplyLeading: true, 92 | flexibleSpace: FlexibleSpaceBar( 93 | centerTitle: true, 94 | collapseMode: CollapseMode.parallax, 95 | titlePadding: const EdgeInsets.all(16), 96 | background: Padding( 97 | padding: const EdgeInsets.all(8.0), 98 | child: Image.asset('assets/image/banner.png'), 99 | ), 100 | ), 101 | bottom: PreferredSize( 102 | preferredSize: const Size.fromHeight(48), 103 | child: CupertinoSearchTextField( 104 | onChanged: (value) { 105 | setState(() { 106 | _searchText = value; 107 | }); 108 | }, 109 | ), 110 | ), 111 | ), 112 | if (lightData.isNotEmpty) ...[ 113 | const SliverPadding( 114 | padding: EdgeInsets.only(top: 24.0), 115 | sliver: SliverToBoxAdapter(child: SectionTitle(title: 'Light')), 116 | ), 117 | IconSliverGrid( 118 | iconDetails: lightData, 119 | selectedIcon: _selectedIcon, 120 | onTap: (tappedIcon) { 121 | setState(() { 122 | if (_selectedIcon == tappedIcon) { 123 | _selectedIcon = null; 124 | } else { 125 | _selectedIcon = tappedIcon; 126 | } 127 | }); 128 | }, 129 | ), 130 | ], 131 | if (boldData.isNotEmpty) ...[ 132 | const SliverPadding( 133 | padding: EdgeInsets.only(top: 12.0), 134 | sliver: SliverToBoxAdapter(child: SectionTitle(title: 'Bold')), 135 | ), 136 | IconSliverGrid( 137 | iconDetails: boldData, 138 | selectedIcon: _selectedIcon, 139 | onTap: (tappedIcon) { 140 | setState(() { 141 | if (_selectedIcon == tappedIcon) { 142 | _selectedIcon = null; 143 | } else { 144 | _selectedIcon = tappedIcon; 145 | } 146 | }); 147 | }, 148 | ), 149 | ], 150 | if (brokenData.isNotEmpty) ...[ 151 | const SliverPadding( 152 | padding: EdgeInsets.only(top: 12.0), 153 | sliver: SliverToBoxAdapter(child: SectionTitle(title: 'Bulk')), 154 | ), 155 | IconSliverGrid( 156 | iconDetails: brokenData, 157 | selectedIcon: _selectedIcon, 158 | onTap: (tappedIcon) { 159 | setState(() { 160 | if (_selectedIcon == tappedIcon) { 161 | _selectedIcon = null; 162 | } else { 163 | _selectedIcon = tappedIcon; 164 | } 165 | }); 166 | }, 167 | ), 168 | ], 169 | const SliverToBoxAdapter(child: SizedBox(height: 32)), 170 | ], 171 | ), 172 | ), 173 | ); 174 | } 175 | 176 | List _filterIcons(List baseData) { 177 | return baseData 178 | .where((icon) => _searchText.isEmpty || icon.title.toLowerCase().contains(_searchText.toLowerCase())) 179 | .toList(); 180 | } 181 | } 182 | 183 | class IconSliverGrid extends SliverGrid { 184 | IconSliverGrid({ 185 | Key? key, 186 | required List iconDetails, 187 | IconlyDetail? selectedIcon, 188 | ValueChanged? onTap, 189 | }) : super( 190 | key: key, 191 | gridDelegate: const SliverGridDelegateWithMaxCrossAxisExtent( 192 | maxCrossAxisExtent: 75, 193 | mainAxisSpacing: 0, 194 | crossAxisSpacing: 0, 195 | childAspectRatio: 1, 196 | ), 197 | delegate: SliverChildBuilderDelegate( 198 | (context, index) { 199 | final icon = iconDetails[index]; 200 | return GestureDetector( 201 | onTap: onTap == null 202 | ? null 203 | : () { 204 | onTap(icon); 205 | }, 206 | child: IconItem( 207 | key: ValueKey(icon), 208 | icon: icon, 209 | selected: selectedIcon == icon, 210 | ), 211 | ); 212 | }, 213 | childCount: iconDetails.length, 214 | ), 215 | ); 216 | } 217 | 218 | class SectionTitle extends StatelessWidget { 219 | const SectionTitle({ 220 | Key? key, 221 | required this.title, 222 | }) : super(key: key); 223 | 224 | final String title; 225 | @override 226 | Widget build(BuildContext context) { 227 | return Column( 228 | children: [ 229 | Align( 230 | alignment: AlignmentDirectional.topStart, 231 | child: Text( 232 | title, 233 | style: Theme.of(context).textTheme.headline6?.copyWith( 234 | fontWeight: FontWeight.bold, 235 | ), 236 | ), 237 | ), 238 | const Divider(), 239 | ], 240 | ); 241 | } 242 | } 243 | -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; 11 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; 12 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; 13 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; 14 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; 15 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; 16 | /* End PBXBuildFile section */ 17 | 18 | /* Begin PBXCopyFilesBuildPhase section */ 19 | 9705A1C41CF9048500538489 /* Embed Frameworks */ = { 20 | isa = PBXCopyFilesBuildPhase; 21 | buildActionMask = 2147483647; 22 | dstPath = ""; 23 | dstSubfolderSpec = 10; 24 | files = ( 25 | ); 26 | name = "Embed Frameworks"; 27 | runOnlyForDeploymentPostprocessing = 0; 28 | }; 29 | /* End PBXCopyFilesBuildPhase section */ 30 | 31 | /* Begin PBXFileReference section */ 32 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; 33 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; 34 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; 35 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; 36 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 37 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; 38 | 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; 39 | 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; 40 | 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; 41 | 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 42 | 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 43 | 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 44 | 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 45 | /* End PBXFileReference section */ 46 | 47 | /* Begin PBXFrameworksBuildPhase section */ 48 | 97C146EB1CF9000F007C117D /* Frameworks */ = { 49 | isa = PBXFrameworksBuildPhase; 50 | buildActionMask = 2147483647; 51 | files = ( 52 | ); 53 | runOnlyForDeploymentPostprocessing = 0; 54 | }; 55 | /* End PBXFrameworksBuildPhase section */ 56 | 57 | /* Begin PBXGroup section */ 58 | 9740EEB11CF90186004384FC /* Flutter */ = { 59 | isa = PBXGroup; 60 | children = ( 61 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, 62 | 9740EEB21CF90195004384FC /* Debug.xcconfig */, 63 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, 64 | 9740EEB31CF90195004384FC /* Generated.xcconfig */, 65 | ); 66 | name = Flutter; 67 | sourceTree = ""; 68 | }; 69 | 97C146E51CF9000F007C117D = { 70 | isa = PBXGroup; 71 | children = ( 72 | 9740EEB11CF90186004384FC /* Flutter */, 73 | 97C146F01CF9000F007C117D /* Runner */, 74 | 97C146EF1CF9000F007C117D /* Products */, 75 | ); 76 | sourceTree = ""; 77 | }; 78 | 97C146EF1CF9000F007C117D /* Products */ = { 79 | isa = PBXGroup; 80 | children = ( 81 | 97C146EE1CF9000F007C117D /* Runner.app */, 82 | ); 83 | name = Products; 84 | sourceTree = ""; 85 | }; 86 | 97C146F01CF9000F007C117D /* Runner */ = { 87 | isa = PBXGroup; 88 | children = ( 89 | 97C146FA1CF9000F007C117D /* Main.storyboard */, 90 | 97C146FD1CF9000F007C117D /* Assets.xcassets */, 91 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, 92 | 97C147021CF9000F007C117D /* Info.plist */, 93 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, 94 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, 95 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, 96 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, 97 | ); 98 | path = Runner; 99 | sourceTree = ""; 100 | }; 101 | /* End PBXGroup section */ 102 | 103 | /* Begin PBXNativeTarget section */ 104 | 97C146ED1CF9000F007C117D /* Runner */ = { 105 | isa = PBXNativeTarget; 106 | buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; 107 | buildPhases = ( 108 | 9740EEB61CF901F6004384FC /* Run Script */, 109 | 97C146EA1CF9000F007C117D /* Sources */, 110 | 97C146EB1CF9000F007C117D /* Frameworks */, 111 | 97C146EC1CF9000F007C117D /* Resources */, 112 | 9705A1C41CF9048500538489 /* Embed Frameworks */, 113 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */, 114 | ); 115 | buildRules = ( 116 | ); 117 | dependencies = ( 118 | ); 119 | name = Runner; 120 | productName = Runner; 121 | productReference = 97C146EE1CF9000F007C117D /* Runner.app */; 122 | productType = "com.apple.product-type.application"; 123 | }; 124 | /* End PBXNativeTarget section */ 125 | 126 | /* Begin PBXProject section */ 127 | 97C146E61CF9000F007C117D /* Project object */ = { 128 | isa = PBXProject; 129 | attributes = { 130 | LastUpgradeCheck = 1020; 131 | ORGANIZATIONNAME = ""; 132 | TargetAttributes = { 133 | 97C146ED1CF9000F007C117D = { 134 | CreatedOnToolsVersion = 7.3.1; 135 | LastSwiftMigration = 1100; 136 | }; 137 | }; 138 | }; 139 | buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; 140 | compatibilityVersion = "Xcode 9.3"; 141 | developmentRegion = en; 142 | hasScannedForEncodings = 0; 143 | knownRegions = ( 144 | en, 145 | Base, 146 | ); 147 | mainGroup = 97C146E51CF9000F007C117D; 148 | productRefGroup = 97C146EF1CF9000F007C117D /* Products */; 149 | projectDirPath = ""; 150 | projectRoot = ""; 151 | targets = ( 152 | 97C146ED1CF9000F007C117D /* Runner */, 153 | ); 154 | }; 155 | /* End PBXProject section */ 156 | 157 | /* Begin PBXResourcesBuildPhase section */ 158 | 97C146EC1CF9000F007C117D /* Resources */ = { 159 | isa = PBXResourcesBuildPhase; 160 | buildActionMask = 2147483647; 161 | files = ( 162 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, 163 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, 164 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, 165 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, 166 | ); 167 | runOnlyForDeploymentPostprocessing = 0; 168 | }; 169 | /* End PBXResourcesBuildPhase section */ 170 | 171 | /* Begin PBXShellScriptBuildPhase section */ 172 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { 173 | isa = PBXShellScriptBuildPhase; 174 | buildActionMask = 2147483647; 175 | files = ( 176 | ); 177 | inputPaths = ( 178 | ); 179 | name = "Thin Binary"; 180 | outputPaths = ( 181 | ); 182 | runOnlyForDeploymentPostprocessing = 0; 183 | shellPath = /bin/sh; 184 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; 185 | }; 186 | 9740EEB61CF901F6004384FC /* Run Script */ = { 187 | isa = PBXShellScriptBuildPhase; 188 | buildActionMask = 2147483647; 189 | files = ( 190 | ); 191 | inputPaths = ( 192 | ); 193 | name = "Run Script"; 194 | outputPaths = ( 195 | ); 196 | runOnlyForDeploymentPostprocessing = 0; 197 | shellPath = /bin/sh; 198 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; 199 | }; 200 | /* End PBXShellScriptBuildPhase section */ 201 | 202 | /* Begin PBXSourcesBuildPhase section */ 203 | 97C146EA1CF9000F007C117D /* Sources */ = { 204 | isa = PBXSourcesBuildPhase; 205 | buildActionMask = 2147483647; 206 | files = ( 207 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, 208 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, 209 | ); 210 | runOnlyForDeploymentPostprocessing = 0; 211 | }; 212 | /* End PBXSourcesBuildPhase section */ 213 | 214 | /* Begin PBXVariantGroup section */ 215 | 97C146FA1CF9000F007C117D /* Main.storyboard */ = { 216 | isa = PBXVariantGroup; 217 | children = ( 218 | 97C146FB1CF9000F007C117D /* Base */, 219 | ); 220 | name = Main.storyboard; 221 | sourceTree = ""; 222 | }; 223 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { 224 | isa = PBXVariantGroup; 225 | children = ( 226 | 97C147001CF9000F007C117D /* Base */, 227 | ); 228 | name = LaunchScreen.storyboard; 229 | sourceTree = ""; 230 | }; 231 | /* End PBXVariantGroup section */ 232 | 233 | /* Begin XCBuildConfiguration section */ 234 | 249021D3217E4FDB00AE95B9 /* Profile */ = { 235 | isa = XCBuildConfiguration; 236 | buildSettings = { 237 | ALWAYS_SEARCH_USER_PATHS = NO; 238 | CLANG_ANALYZER_NONNULL = YES; 239 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 240 | CLANG_CXX_LIBRARY = "libc++"; 241 | CLANG_ENABLE_MODULES = YES; 242 | CLANG_ENABLE_OBJC_ARC = YES; 243 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 244 | CLANG_WARN_BOOL_CONVERSION = YES; 245 | CLANG_WARN_COMMA = YES; 246 | CLANG_WARN_CONSTANT_CONVERSION = YES; 247 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 248 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 249 | CLANG_WARN_EMPTY_BODY = YES; 250 | CLANG_WARN_ENUM_CONVERSION = YES; 251 | CLANG_WARN_INFINITE_RECURSION = YES; 252 | CLANG_WARN_INT_CONVERSION = YES; 253 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 254 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 255 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 256 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 257 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 258 | CLANG_WARN_STRICT_PROTOTYPES = YES; 259 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 260 | CLANG_WARN_UNREACHABLE_CODE = YES; 261 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 262 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 263 | COPY_PHASE_STRIP = NO; 264 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 265 | ENABLE_NS_ASSERTIONS = NO; 266 | ENABLE_STRICT_OBJC_MSGSEND = YES; 267 | GCC_C_LANGUAGE_STANDARD = gnu99; 268 | GCC_NO_COMMON_BLOCKS = YES; 269 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 270 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 271 | GCC_WARN_UNDECLARED_SELECTOR = YES; 272 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 273 | GCC_WARN_UNUSED_FUNCTION = YES; 274 | GCC_WARN_UNUSED_VARIABLE = YES; 275 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 276 | MTL_ENABLE_DEBUG_INFO = NO; 277 | SDKROOT = iphoneos; 278 | SUPPORTED_PLATFORMS = iphoneos; 279 | TARGETED_DEVICE_FAMILY = "1,2"; 280 | VALIDATE_PRODUCT = YES; 281 | }; 282 | name = Profile; 283 | }; 284 | 249021D4217E4FDB00AE95B9 /* Profile */ = { 285 | isa = XCBuildConfiguration; 286 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 287 | buildSettings = { 288 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 289 | CLANG_ENABLE_MODULES = YES; 290 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 291 | ENABLE_BITCODE = NO; 292 | INFOPLIST_FILE = Runner/Info.plist; 293 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 294 | PRODUCT_BUNDLE_IDENTIFIER = com.example.example; 295 | PRODUCT_NAME = "$(TARGET_NAME)"; 296 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 297 | SWIFT_VERSION = 5.0; 298 | VERSIONING_SYSTEM = "apple-generic"; 299 | }; 300 | name = Profile; 301 | }; 302 | 97C147031CF9000F007C117D /* Debug */ = { 303 | isa = XCBuildConfiguration; 304 | buildSettings = { 305 | ALWAYS_SEARCH_USER_PATHS = NO; 306 | CLANG_ANALYZER_NONNULL = YES; 307 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 308 | CLANG_CXX_LIBRARY = "libc++"; 309 | CLANG_ENABLE_MODULES = YES; 310 | CLANG_ENABLE_OBJC_ARC = YES; 311 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 312 | CLANG_WARN_BOOL_CONVERSION = YES; 313 | CLANG_WARN_COMMA = YES; 314 | CLANG_WARN_CONSTANT_CONVERSION = YES; 315 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 316 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 317 | CLANG_WARN_EMPTY_BODY = YES; 318 | CLANG_WARN_ENUM_CONVERSION = YES; 319 | CLANG_WARN_INFINITE_RECURSION = YES; 320 | CLANG_WARN_INT_CONVERSION = YES; 321 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 322 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 323 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 324 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 325 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 326 | CLANG_WARN_STRICT_PROTOTYPES = YES; 327 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 328 | CLANG_WARN_UNREACHABLE_CODE = YES; 329 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 330 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 331 | COPY_PHASE_STRIP = NO; 332 | DEBUG_INFORMATION_FORMAT = dwarf; 333 | ENABLE_STRICT_OBJC_MSGSEND = YES; 334 | ENABLE_TESTABILITY = YES; 335 | GCC_C_LANGUAGE_STANDARD = gnu99; 336 | GCC_DYNAMIC_NO_PIC = NO; 337 | GCC_NO_COMMON_BLOCKS = YES; 338 | GCC_OPTIMIZATION_LEVEL = 0; 339 | GCC_PREPROCESSOR_DEFINITIONS = ( 340 | "DEBUG=1", 341 | "$(inherited)", 342 | ); 343 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 344 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 345 | GCC_WARN_UNDECLARED_SELECTOR = YES; 346 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 347 | GCC_WARN_UNUSED_FUNCTION = YES; 348 | GCC_WARN_UNUSED_VARIABLE = YES; 349 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 350 | MTL_ENABLE_DEBUG_INFO = YES; 351 | ONLY_ACTIVE_ARCH = YES; 352 | SDKROOT = iphoneos; 353 | TARGETED_DEVICE_FAMILY = "1,2"; 354 | }; 355 | name = Debug; 356 | }; 357 | 97C147041CF9000F007C117D /* Release */ = { 358 | isa = XCBuildConfiguration; 359 | buildSettings = { 360 | ALWAYS_SEARCH_USER_PATHS = NO; 361 | CLANG_ANALYZER_NONNULL = YES; 362 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 363 | CLANG_CXX_LIBRARY = "libc++"; 364 | CLANG_ENABLE_MODULES = YES; 365 | CLANG_ENABLE_OBJC_ARC = YES; 366 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 367 | CLANG_WARN_BOOL_CONVERSION = YES; 368 | CLANG_WARN_COMMA = YES; 369 | CLANG_WARN_CONSTANT_CONVERSION = YES; 370 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 371 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 372 | CLANG_WARN_EMPTY_BODY = YES; 373 | CLANG_WARN_ENUM_CONVERSION = YES; 374 | CLANG_WARN_INFINITE_RECURSION = YES; 375 | CLANG_WARN_INT_CONVERSION = YES; 376 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 377 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 378 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 379 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 380 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 381 | CLANG_WARN_STRICT_PROTOTYPES = YES; 382 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 383 | CLANG_WARN_UNREACHABLE_CODE = YES; 384 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 385 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 386 | COPY_PHASE_STRIP = NO; 387 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 388 | ENABLE_NS_ASSERTIONS = NO; 389 | ENABLE_STRICT_OBJC_MSGSEND = YES; 390 | GCC_C_LANGUAGE_STANDARD = gnu99; 391 | GCC_NO_COMMON_BLOCKS = YES; 392 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 393 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 394 | GCC_WARN_UNDECLARED_SELECTOR = YES; 395 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 396 | GCC_WARN_UNUSED_FUNCTION = YES; 397 | GCC_WARN_UNUSED_VARIABLE = YES; 398 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 399 | MTL_ENABLE_DEBUG_INFO = NO; 400 | SDKROOT = iphoneos; 401 | SUPPORTED_PLATFORMS = iphoneos; 402 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 403 | TARGETED_DEVICE_FAMILY = "1,2"; 404 | VALIDATE_PRODUCT = YES; 405 | }; 406 | name = Release; 407 | }; 408 | 97C147061CF9000F007C117D /* Debug */ = { 409 | isa = XCBuildConfiguration; 410 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 411 | buildSettings = { 412 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 413 | CLANG_ENABLE_MODULES = YES; 414 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 415 | ENABLE_BITCODE = NO; 416 | INFOPLIST_FILE = Runner/Info.plist; 417 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 418 | PRODUCT_BUNDLE_IDENTIFIER = com.example.example; 419 | PRODUCT_NAME = "$(TARGET_NAME)"; 420 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 421 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 422 | SWIFT_VERSION = 5.0; 423 | VERSIONING_SYSTEM = "apple-generic"; 424 | }; 425 | name = Debug; 426 | }; 427 | 97C147071CF9000F007C117D /* Release */ = { 428 | isa = XCBuildConfiguration; 429 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 430 | buildSettings = { 431 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 432 | CLANG_ENABLE_MODULES = YES; 433 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 434 | ENABLE_BITCODE = NO; 435 | INFOPLIST_FILE = Runner/Info.plist; 436 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 437 | PRODUCT_BUNDLE_IDENTIFIER = com.example.example; 438 | PRODUCT_NAME = "$(TARGET_NAME)"; 439 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 440 | SWIFT_VERSION = 5.0; 441 | VERSIONING_SYSTEM = "apple-generic"; 442 | }; 443 | name = Release; 444 | }; 445 | /* End XCBuildConfiguration section */ 446 | 447 | /* Begin XCConfigurationList section */ 448 | 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { 449 | isa = XCConfigurationList; 450 | buildConfigurations = ( 451 | 97C147031CF9000F007C117D /* Debug */, 452 | 97C147041CF9000F007C117D /* Release */, 453 | 249021D3217E4FDB00AE95B9 /* Profile */, 454 | ); 455 | defaultConfigurationIsVisible = 0; 456 | defaultConfigurationName = Release; 457 | }; 458 | 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { 459 | isa = XCConfigurationList; 460 | buildConfigurations = ( 461 | 97C147061CF9000F007C117D /* Debug */, 462 | 97C147071CF9000F007C117D /* Release */, 463 | 249021D4217E4FDB00AE95B9 /* Profile */, 464 | ); 465 | defaultConfigurationIsVisible = 0; 466 | defaultConfigurationName = Release; 467 | }; 468 | /* End XCConfigurationList section */ 469 | }; 470 | rootObject = 97C146E61CF9000F007C117D /* Project object */; 471 | } 472 | -------------------------------------------------------------------------------- /example/lib/src/data/icons.dart: -------------------------------------------------------------------------------- 1 | import 'package:iconly/iconly.dart'; 2 | 3 | import 'icon_detail.dart'; 4 | 5 | final lightIcons = [ 6 | IconlyDetail(type: 'IconlyLight', title: 'activity', iconData: IconlyLight.activity), 7 | IconlyDetail(type: 'IconlyLight', title: 'add_user', iconData: IconlyLight.add_user), 8 | IconlyDetail(type: 'IconlyLight', title: 'arrow_down', iconData: IconlyLight.arrow_down), 9 | IconlyDetail(type: 'IconlyLight', title: 'arrow_down_2', iconData: IconlyLight.arrow_down_2), 10 | IconlyDetail(type: 'IconlyLight', title: 'arrow_down_3', iconData: IconlyLight.arrow_down_3), 11 | IconlyDetail(type: 'IconlyLight', title: 'arrow_down_circle', iconData: IconlyLight.arrow_down_circle), 12 | IconlyDetail(type: 'IconlyLight', title: 'arrow_down_square', iconData: IconlyLight.arrow_down_square), 13 | IconlyDetail(type: 'IconlyLight', title: 'arrow_left', iconData: IconlyLight.arrow_left), 14 | IconlyDetail(type: 'IconlyLight', title: 'arrow_left_2', iconData: IconlyLight.arrow_left_2), 15 | IconlyDetail(type: 'IconlyLight', title: 'arrow_left_3', iconData: IconlyLight.arrow_left_3), 16 | IconlyDetail(type: 'IconlyLight', title: 'arrow_left_circle', iconData: IconlyLight.arrow_left_circle), 17 | IconlyDetail(type: 'IconlyLight', title: 'arrow_left_square', iconData: IconlyLight.arrow_left_square), 18 | IconlyDetail(type: 'IconlyLight', title: 'arrow_right', iconData: IconlyLight.arrow_right), 19 | IconlyDetail(type: 'IconlyLight', title: 'arrow_right_2', iconData: IconlyLight.arrow_right_2), 20 | IconlyDetail(type: 'IconlyLight', title: 'arrow_right_3', iconData: IconlyLight.arrow_right_3), 21 | IconlyDetail(type: 'IconlyLight', title: 'arrow_right_circle', iconData: IconlyLight.arrow_right_circle), 22 | IconlyDetail(type: 'IconlyLight', title: 'arrow_right_square', iconData: IconlyLight.arrow_right_square), 23 | IconlyDetail(type: 'IconlyLight', title: 'arrow_up', iconData: IconlyLight.arrow_up), 24 | IconlyDetail(type: 'IconlyLight', title: 'arrow_up_2', iconData: IconlyLight.arrow_up_2), 25 | IconlyDetail(type: 'IconlyLight', title: 'arrow_up_3', iconData: IconlyLight.arrow_up_3), 26 | IconlyDetail(type: 'IconlyLight', title: 'arrow_up_circle', iconData: IconlyLight.arrow_up_circle), 27 | IconlyDetail(type: 'IconlyLight', title: 'arrow_up_square', iconData: IconlyLight.arrow_up_square), 28 | IconlyDetail(type: 'IconlyLight', title: 'bag', iconData: IconlyLight.bag), 29 | IconlyDetail(type: 'IconlyLight', title: 'bag_2', iconData: IconlyLight.bag_2), 30 | IconlyDetail(type: 'IconlyLight', title: 'bookmark', iconData: IconlyLight.bookmark), 31 | IconlyDetail(type: 'IconlyLight', title: 'buy', iconData: IconlyLight.buy), 32 | IconlyDetail(type: 'IconlyLight', title: 'calendar', iconData: IconlyLight.calendar), 33 | IconlyDetail(type: 'IconlyLight', title: 'call', iconData: IconlyLight.call), 34 | IconlyDetail(type: 'IconlyLight', title: 'call_missed', iconData: IconlyLight.call_missed), 35 | IconlyDetail(type: 'IconlyLight', title: 'call_silent', iconData: IconlyLight.call_silent), 36 | IconlyDetail(type: 'IconlyLight', title: 'calling', iconData: IconlyLight.calling), 37 | IconlyDetail(type: 'IconlyLight', title: 'camera', iconData: IconlyLight.camera), 38 | IconlyDetail(type: 'IconlyLight', title: 'category', iconData: IconlyLight.category), 39 | IconlyDetail(type: 'IconlyLight', title: 'chart', iconData: IconlyLight.chart), 40 | IconlyDetail(type: 'IconlyLight', title: 'chat', iconData: IconlyLight.chat), 41 | IconlyDetail(type: 'IconlyLight', title: 'close_square', iconData: IconlyLight.close_square), 42 | IconlyDetail(type: 'IconlyLight', title: 'danger', iconData: IconlyLight.danger), 43 | IconlyDetail(type: 'IconlyLight', title: 'delete', iconData: IconlyLight.delete), 44 | IconlyDetail(type: 'IconlyLight', title: 'discount', iconData: IconlyLight.discount), 45 | IconlyDetail(type: 'IconlyLight', title: 'discovery', iconData: IconlyLight.discovery), 46 | IconlyDetail(type: 'IconlyLight', title: 'document', iconData: IconlyLight.document), 47 | IconlyDetail(type: 'IconlyLight', title: 'download', iconData: IconlyLight.download), 48 | IconlyDetail(type: 'IconlyLight', title: 'edit', iconData: IconlyLight.edit), 49 | IconlyDetail(type: 'IconlyLight', title: 'edit_square', iconData: IconlyLight.edit_square), 50 | IconlyDetail(type: 'IconlyLight', title: 'filter', iconData: IconlyLight.filter), 51 | IconlyDetail(type: 'IconlyLight', title: 'filter_2', iconData: IconlyLight.filter_2), 52 | IconlyDetail(type: 'IconlyLight', title: 'folder', iconData: IconlyLight.folder), 53 | IconlyDetail(type: 'IconlyLight', title: 'game', iconData: IconlyLight.game), 54 | IconlyDetail(type: 'IconlyLight', title: 'graph', iconData: IconlyLight.graph), 55 | IconlyDetail(type: 'IconlyLight', title: 'heart', iconData: IconlyLight.heart), 56 | IconlyDetail(type: 'IconlyLight', title: 'hide', iconData: IconlyLight.hide), 57 | IconlyDetail(type: 'IconlyLight', title: 'home', iconData: IconlyLight.home), 58 | IconlyDetail(type: 'IconlyLight', title: 'image', iconData: IconlyLight.image), 59 | IconlyDetail(type: 'IconlyLight', title: 'image_2', iconData: IconlyLight.image_2), 60 | IconlyDetail(type: 'IconlyLight', title: 'info_circle', iconData: IconlyLight.info_circle), 61 | IconlyDetail(type: 'IconlyLight', title: 'info_square', iconData: IconlyLight.info_square), 62 | IconlyDetail(type: 'IconlyLight', title: 'location', iconData: IconlyLight.location), 63 | IconlyDetail(type: 'IconlyLight', title: 'lock', iconData: IconlyLight.lock), 64 | IconlyDetail(type: 'IconlyLight', title: 'login', iconData: IconlyLight.login), 65 | IconlyDetail(type: 'IconlyLight', title: 'logout', iconData: IconlyLight.logout), 66 | IconlyDetail(type: 'IconlyLight', title: 'message', iconData: IconlyLight.message), 67 | IconlyDetail(type: 'IconlyLight', title: 'more_circle', iconData: IconlyLight.more_circle), 68 | IconlyDetail(type: 'IconlyLight', title: 'more_square', iconData: IconlyLight.more_square), 69 | IconlyDetail(type: 'IconlyLight', title: 'notification', iconData: IconlyLight.notification), 70 | IconlyDetail(type: 'IconlyLight', title: 'paper', iconData: IconlyLight.paper), 71 | IconlyDetail(type: 'IconlyLight', title: 'paper_download', iconData: IconlyLight.paper_download), 72 | IconlyDetail(type: 'IconlyLight', title: 'paper_fail', iconData: IconlyLight.paper_fail), 73 | IconlyDetail(type: 'IconlyLight', title: 'paper_negative', iconData: IconlyLight.paper_negative), 74 | IconlyDetail(type: 'IconlyLight', title: 'paper_plus', iconData: IconlyLight.paper_plus), 75 | IconlyDetail(type: 'IconlyLight', title: 'paper_upload', iconData: IconlyLight.paper_upload), 76 | IconlyDetail(type: 'IconlyLight', title: 'password', iconData: IconlyLight.password), 77 | IconlyDetail(type: 'IconlyLight', title: 'play', iconData: IconlyLight.play), 78 | IconlyDetail(type: 'IconlyLight', title: 'plus', iconData: IconlyLight.plus), 79 | IconlyDetail(type: 'IconlyLight', title: 'profile', iconData: IconlyLight.profile), 80 | IconlyDetail(type: 'IconlyLight', title: 'scan', iconData: IconlyLight.scan), 81 | IconlyDetail(type: 'IconlyLight', title: 'search', iconData: IconlyLight.search), 82 | IconlyDetail(type: 'IconlyLight', title: 'send', iconData: IconlyLight.send), 83 | IconlyDetail(type: 'IconlyLight', title: 'setting', iconData: IconlyLight.setting), 84 | IconlyDetail(type: 'IconlyLight', title: 'shield_done', iconData: IconlyLight.shield_done), 85 | IconlyDetail(type: 'IconlyLight', title: 'shield_fail', iconData: IconlyLight.shield_fail), 86 | IconlyDetail(type: 'IconlyLight', title: 'show', iconData: IconlyLight.show), 87 | IconlyDetail(type: 'IconlyLight', title: 'star', iconData: IconlyLight.star), 88 | IconlyDetail(type: 'IconlyLight', title: 'swap', iconData: IconlyLight.swap), 89 | IconlyDetail(type: 'IconlyLight', title: 'tick_square', iconData: IconlyLight.tick_square), 90 | IconlyDetail(type: 'IconlyLight', title: 'ticket', iconData: IconlyLight.ticket), 91 | IconlyDetail(type: 'IconlyLight', title: 'ticket_star', iconData: IconlyLight.ticket_star), 92 | IconlyDetail(type: 'IconlyLight', title: 'time_circle', iconData: IconlyLight.time_circle), 93 | IconlyDetail(type: 'IconlyLight', title: 'time_square', iconData: IconlyLight.time_square), 94 | IconlyDetail(type: 'IconlyLight', title: 'unlock', iconData: IconlyLight.unlock), 95 | IconlyDetail(type: 'IconlyLight', title: 'upload', iconData: IconlyLight.upload), 96 | IconlyDetail(type: 'IconlyLight', title: 'user', iconData: IconlyLight.user), 97 | IconlyDetail(type: 'IconlyLight', title: 'user_1', iconData: IconlyLight.user_1), 98 | IconlyDetail(type: 'IconlyLight', title: 'video', iconData: IconlyLight.video), 99 | IconlyDetail(type: 'IconlyLight', title: 'voice', iconData: IconlyLight.voice), 100 | IconlyDetail(type: 'IconlyLight', title: 'voice_2', iconData: IconlyLight.voice_2), 101 | IconlyDetail(type: 'IconlyLight', title: 'volume_down', iconData: IconlyLight.volume_down), 102 | IconlyDetail(type: 'IconlyLight', title: 'volume_off', iconData: IconlyLight.volume_off), 103 | IconlyDetail(type: 'IconlyLight', title: 'volume_up', iconData: IconlyLight.volume_up), 104 | IconlyDetail(type: 'IconlyLight', title: 'wallet', iconData: IconlyLight.wallet), 105 | IconlyDetail(type: 'IconlyLight', title: 'work', iconData: IconlyLight.work), 106 | ]; 107 | 108 | final brokenIcons = [ 109 | IconlyDetail(type: 'IconlyBroken', title: 'activity', iconData: IconlyBroken.activity), 110 | IconlyDetail(type: 'IconlyBroken', title: 'add_user', iconData: IconlyBroken.add_user), 111 | IconlyDetail(type: 'IconlyBroken', title: 'arrow_down', iconData: IconlyBroken.arrow_down), 112 | IconlyDetail(type: 'IconlyBroken', title: 'arrow_down_2', iconData: IconlyBroken.arrow_down_2), 113 | IconlyDetail(type: 'IconlyBroken', title: 'arrow_down_3', iconData: IconlyBroken.arrow_down_3), 114 | IconlyDetail(type: 'IconlyBroken', title: 'arrow_down_circle', iconData: IconlyBroken.arrow_down_circle), 115 | IconlyDetail(type: 'IconlyBroken', title: 'arrow_down_square', iconData: IconlyBroken.arrow_down_square), 116 | IconlyDetail(type: 'IconlyBroken', title: 'arrow_left', iconData: IconlyBroken.arrow_left), 117 | IconlyDetail(type: 'IconlyBroken', title: 'arrow_left_2', iconData: IconlyBroken.arrow_left_2), 118 | IconlyDetail(type: 'IconlyBroken', title: 'arrow_left_3', iconData: IconlyBroken.arrow_left_3), 119 | IconlyDetail(type: 'IconlyBroken', title: 'arrow_left_circle', iconData: IconlyBroken.arrow_left_circle), 120 | IconlyDetail(type: 'IconlyBroken', title: 'arrow_left_square', iconData: IconlyBroken.arrow_left_square), 121 | IconlyDetail(type: 'IconlyBroken', title: 'arrow_right', iconData: IconlyBroken.arrow_right), 122 | IconlyDetail(type: 'IconlyBroken', title: 'arrow_right_2', iconData: IconlyBroken.arrow_right_2), 123 | IconlyDetail(type: 'IconlyBroken', title: 'arrow_right_3', iconData: IconlyBroken.arrow_right_3), 124 | IconlyDetail(type: 'IconlyBroken', title: 'arrow_right_circle', iconData: IconlyBroken.arrow_right_circle), 125 | IconlyDetail(type: 'IconlyBroken', title: 'arrow_right_square', iconData: IconlyBroken.arrow_right_square), 126 | IconlyDetail(type: 'IconlyBroken', title: 'arrow_up', iconData: IconlyBroken.arrow_up), 127 | IconlyDetail(type: 'IconlyBroken', title: 'arrow_up_2', iconData: IconlyBroken.arrow_up_2), 128 | IconlyDetail(type: 'IconlyBroken', title: 'arrow_up_3', iconData: IconlyBroken.arrow_up_3), 129 | IconlyDetail(type: 'IconlyBroken', title: 'arrow_up_circle', iconData: IconlyBroken.arrow_up_circle), 130 | IconlyDetail(type: 'IconlyBroken', title: 'arrow_up_square', iconData: IconlyBroken.arrow_up_square), 131 | IconlyDetail(type: 'IconlyBroken', title: 'bag', iconData: IconlyBroken.bag), 132 | IconlyDetail(type: 'IconlyBroken', title: 'bag_2', iconData: IconlyBroken.bag_2), 133 | IconlyDetail(type: 'IconlyBroken', title: 'bookmark', iconData: IconlyBroken.bookmark), 134 | IconlyDetail(type: 'IconlyBroken', title: 'buy', iconData: IconlyBroken.buy), 135 | IconlyDetail(type: 'IconlyBroken', title: 'calendar', iconData: IconlyBroken.calendar), 136 | IconlyDetail(type: 'IconlyBroken', title: 'call', iconData: IconlyBroken.call), 137 | IconlyDetail(type: 'IconlyBroken', title: 'call_missed', iconData: IconlyBroken.call_missed), 138 | IconlyDetail(type: 'IconlyBroken', title: 'call_silent', iconData: IconlyBroken.call_silent), 139 | IconlyDetail(type: 'IconlyBroken', title: 'calling', iconData: IconlyBroken.calling), 140 | IconlyDetail(type: 'IconlyBroken', title: 'camera', iconData: IconlyBroken.camera), 141 | IconlyDetail(type: 'IconlyBroken', title: 'category', iconData: IconlyBroken.category), 142 | IconlyDetail(type: 'IconlyBroken', title: 'chart', iconData: IconlyBroken.chart), 143 | IconlyDetail(type: 'IconlyBroken', title: 'chat', iconData: IconlyBroken.chat), 144 | IconlyDetail(type: 'IconlyBroken', title: 'close_square', iconData: IconlyBroken.close_square), 145 | IconlyDetail(type: 'IconlyBroken', title: 'danger', iconData: IconlyBroken.danger), 146 | IconlyDetail(type: 'IconlyBroken', title: 'delete', iconData: IconlyBroken.delete), 147 | IconlyDetail(type: 'IconlyBroken', title: 'discount', iconData: IconlyBroken.discount), 148 | IconlyDetail(type: 'IconlyBroken', title: 'discovery', iconData: IconlyBroken.discovery), 149 | IconlyDetail(type: 'IconlyBroken', title: 'document', iconData: IconlyBroken.document), 150 | IconlyDetail(type: 'IconlyBroken', title: 'download', iconData: IconlyBroken.download), 151 | IconlyDetail(type: 'IconlyBroken', title: 'edit', iconData: IconlyBroken.edit), 152 | IconlyDetail(type: 'IconlyBroken', title: 'edit_square', iconData: IconlyBroken.edit_square), 153 | IconlyDetail(type: 'IconlyBroken', title: 'filter', iconData: IconlyBroken.filter), 154 | IconlyDetail(type: 'IconlyBroken', title: 'filter_2', iconData: IconlyBroken.filter_2), 155 | IconlyDetail(type: 'IconlyBroken', title: 'folder', iconData: IconlyBroken.folder), 156 | IconlyDetail(type: 'IconlyBroken', title: 'game', iconData: IconlyBroken.game), 157 | IconlyDetail(type: 'IconlyBroken', title: 'graph', iconData: IconlyBroken.graph), 158 | IconlyDetail(type: 'IconlyBroken', title: 'heart', iconData: IconlyBroken.heart), 159 | IconlyDetail(type: 'IconlyBroken', title: 'hide', iconData: IconlyBroken.hide), 160 | IconlyDetail(type: 'IconlyBroken', title: 'home', iconData: IconlyBroken.home), 161 | IconlyDetail(type: 'IconlyBroken', title: 'image', iconData: IconlyBroken.image), 162 | IconlyDetail(type: 'IconlyBroken', title: 'image_2', iconData: IconlyBroken.image_2), 163 | IconlyDetail(type: 'IconlyBroken', title: 'info_circle', iconData: IconlyBroken.info_circle), 164 | IconlyDetail(type: 'IconlyBroken', title: 'info_square', iconData: IconlyBroken.info_square), 165 | IconlyDetail(type: 'IconlyBroken', title: 'location', iconData: IconlyBroken.location), 166 | IconlyDetail(type: 'IconlyBroken', title: 'lock', iconData: IconlyBroken.lock), 167 | IconlyDetail(type: 'IconlyBroken', title: 'login', iconData: IconlyBroken.login), 168 | IconlyDetail(type: 'IconlyBroken', title: 'logout', iconData: IconlyBroken.logout), 169 | IconlyDetail(type: 'IconlyBroken', title: 'message', iconData: IconlyBroken.message), 170 | IconlyDetail(type: 'IconlyBroken', title: 'more_circle', iconData: IconlyBroken.more_circle), 171 | IconlyDetail(type: 'IconlyBroken', title: 'more_square', iconData: IconlyBroken.more_square), 172 | IconlyDetail(type: 'IconlyBroken', title: 'notification', iconData: IconlyBroken.notification), 173 | IconlyDetail(type: 'IconlyBroken', title: 'paper', iconData: IconlyBroken.paper), 174 | IconlyDetail(type: 'IconlyBroken', title: 'paper_download', iconData: IconlyBroken.paper_download), 175 | IconlyDetail(type: 'IconlyBroken', title: 'paper_fail', iconData: IconlyBroken.paper_fail), 176 | IconlyDetail(type: 'IconlyBroken', title: 'paper_negative', iconData: IconlyBroken.paper_negative), 177 | IconlyDetail(type: 'IconlyBroken', title: 'paper_plus', iconData: IconlyBroken.paper_plus), 178 | IconlyDetail(type: 'IconlyBroken', title: 'paper_upload', iconData: IconlyBroken.paper_upload), 179 | IconlyDetail(type: 'IconlyBroken', title: 'password', iconData: IconlyBroken.password), 180 | IconlyDetail(type: 'IconlyBroken', title: 'play', iconData: IconlyBroken.play), 181 | IconlyDetail(type: 'IconlyBroken', title: 'plus', iconData: IconlyBroken.plus), 182 | IconlyDetail(type: 'IconlyBroken', title: 'profile', iconData: IconlyBroken.profile), 183 | IconlyDetail(type: 'IconlyBroken', title: 'scan', iconData: IconlyBroken.scan), 184 | IconlyDetail(type: 'IconlyBroken', title: 'search', iconData: IconlyBroken.search), 185 | IconlyDetail(type: 'IconlyBroken', title: 'send', iconData: IconlyBroken.send), 186 | IconlyDetail(type: 'IconlyBroken', title: 'setting', iconData: IconlyBroken.setting), 187 | IconlyDetail(type: 'IconlyBroken', title: 'shield_done', iconData: IconlyBroken.shield_done), 188 | IconlyDetail(type: 'IconlyBroken', title: 'shield_fail', iconData: IconlyBroken.shield_fail), 189 | IconlyDetail(type: 'IconlyBroken', title: 'show', iconData: IconlyBroken.show), 190 | IconlyDetail(type: 'IconlyBroken', title: 'star', iconData: IconlyBroken.star), 191 | IconlyDetail(type: 'IconlyBroken', title: 'swap', iconData: IconlyBroken.swap), 192 | IconlyDetail(type: 'IconlyBroken', title: 'tick_square', iconData: IconlyBroken.tick_square), 193 | IconlyDetail(type: 'IconlyBroken', title: 'ticket', iconData: IconlyBroken.ticket), 194 | IconlyDetail(type: 'IconlyBroken', title: 'ticket_star', iconData: IconlyBroken.ticket_star), 195 | IconlyDetail(type: 'IconlyBroken', title: 'time_circle', iconData: IconlyBroken.time_circle), 196 | IconlyDetail(type: 'IconlyBroken', title: 'times_quare', iconData: IconlyBroken.times_quare), 197 | IconlyDetail(type: 'IconlyBroken', title: 'unlock', iconData: IconlyBroken.unlock), 198 | IconlyDetail(type: 'IconlyBroken', title: 'upload', iconData: IconlyBroken.upload), 199 | IconlyDetail(type: 'IconlyBroken', title: 'user_2', iconData: IconlyBroken.user_2), 200 | IconlyDetail(type: 'IconlyBroken', title: 'user_3', iconData: IconlyBroken.user_3), 201 | IconlyDetail(type: 'IconlyBroken', title: 'video', iconData: IconlyBroken.video), 202 | IconlyDetail(type: 'IconlyBroken', title: 'voice', iconData: IconlyBroken.voice), 203 | IconlyDetail(type: 'IconlyBroken', title: 'voice_2', iconData: IconlyBroken.voice_2), 204 | IconlyDetail(type: 'IconlyBroken', title: 'volume_down', iconData: IconlyBroken.volume_down), 205 | IconlyDetail(type: 'IconlyBroken', title: 'volume_off', iconData: IconlyBroken.volume_off), 206 | IconlyDetail(type: 'IconlyBroken', title: 'volume_up', iconData: IconlyBroken.volume_up), 207 | IconlyDetail(type: 'IconlyBroken', title: 'wallet', iconData: IconlyBroken.wallet), 208 | IconlyDetail(type: 'IconlyBroken', title: 'work', iconData: IconlyBroken.work), 209 | ]; 210 | 211 | final boldIcons = [ 212 | IconlyDetail(type: 'IconlyBold', title: 'activity', iconData: IconlyBold.activity), 213 | IconlyDetail(type: 'IconlyBold', title: 'add_user', iconData: IconlyBold.add_user), 214 | IconlyDetail(type: 'IconlyBold', title: 'arrow_down', iconData: IconlyBold.arrow_down), 215 | IconlyDetail(type: 'IconlyBold', title: 'arrow_down_2', iconData: IconlyBold.arrow_down_2), 216 | IconlyDetail(type: 'IconlyBold', title: 'arrow_down_3', iconData: IconlyBold.arrow_down_3), 217 | IconlyDetail(type: 'IconlyBold', title: 'arrow_down_circle', iconData: IconlyBold.arrow_down_circle), 218 | IconlyDetail(type: 'IconlyBold', title: 'arrow_down_square', iconData: IconlyBold.arrow_down_square), 219 | IconlyDetail(type: 'IconlyBold', title: 'arrow_left', iconData: IconlyBold.arrow_left), 220 | IconlyDetail(type: 'IconlyBold', title: 'arrow_left_2', iconData: IconlyBold.arrow_left_2), 221 | IconlyDetail(type: 'IconlyBold', title: 'arrow_left_3', iconData: IconlyBold.arrow_left_3), 222 | IconlyDetail(type: 'IconlyBold', title: 'arrow_left_circle', iconData: IconlyBold.arrow_left_circle), 223 | IconlyDetail(type: 'IconlyBold', title: 'arrow_left_square', iconData: IconlyBold.arrow_left_square), 224 | IconlyDetail(type: 'IconlyBold', title: 'arrow_right', iconData: IconlyBold.arrow_right), 225 | IconlyDetail(type: 'IconlyBold', title: 'arrow_right_2', iconData: IconlyBold.arrow_right_2), 226 | IconlyDetail(type: 'IconlyBold', title: 'arrow_right_3', iconData: IconlyBold.arrow_right_3), 227 | IconlyDetail(type: 'IconlyBold', title: 'arrow_right_circle', iconData: IconlyBold.arrow_right_circle), 228 | IconlyDetail(type: 'IconlyBold', title: 'arrow_right_square', iconData: IconlyBold.arrow_right_square), 229 | IconlyDetail(type: 'IconlyBold', title: 'arrow_up', iconData: IconlyBold.arrow_up), 230 | IconlyDetail(type: 'IconlyBold', title: 'arrow_up_2', iconData: IconlyBold.arrow_up_2), 231 | IconlyDetail(type: 'IconlyBold', title: 'arrow_up_3', iconData: IconlyBold.arrow_up_3), 232 | IconlyDetail(type: 'IconlyBold', title: 'arrow_up_circle', iconData: IconlyBold.arrow_up_circle), 233 | IconlyDetail(type: 'IconlyBold', title: 'arrow_up_square', iconData: IconlyBold.arrow_up_square), 234 | IconlyDetail(type: 'IconlyBold', title: 'bag', iconData: IconlyBold.bag), 235 | IconlyDetail(type: 'IconlyBold', title: 'bag_2', iconData: IconlyBold.bag_2), 236 | IconlyDetail(type: 'IconlyBold', title: 'bookmark', iconData: IconlyBold.bookmark), 237 | IconlyDetail(type: 'IconlyBold', title: 'buy', iconData: IconlyBold.buy), 238 | IconlyDetail(type: 'IconlyBold', title: 'calendar', iconData: IconlyBold.calendar), 239 | IconlyDetail(type: 'IconlyBold', title: 'call', iconData: IconlyBold.call), 240 | IconlyDetail(type: 'IconlyBold', title: 'call_missed', iconData: IconlyBold.call_missed), 241 | IconlyDetail(type: 'IconlyBold', title: 'call_silent', iconData: IconlyBold.call_silent), 242 | IconlyDetail(type: 'IconlyBold', title: 'calling', iconData: IconlyBold.calling), 243 | IconlyDetail(type: 'IconlyBold', title: 'camera', iconData: IconlyBold.camera), 244 | IconlyDetail(type: 'IconlyBold', title: 'category', iconData: IconlyBold.category), 245 | IconlyDetail(type: 'IconlyBold', title: 'chart', iconData: IconlyBold.chart), 246 | IconlyDetail(type: 'IconlyBold', title: 'chat', iconData: IconlyBold.chat), 247 | IconlyDetail(type: 'IconlyBold', title: 'close_square', iconData: IconlyBold.close_square), 248 | IconlyDetail(type: 'IconlyBold', title: 'danger', iconData: IconlyBold.danger), 249 | IconlyDetail(type: 'IconlyBold', title: 'delete', iconData: IconlyBold.delete), 250 | IconlyDetail(type: 'IconlyBold', title: 'discount', iconData: IconlyBold.discount), 251 | IconlyDetail(type: 'IconlyBold', title: 'discovery', iconData: IconlyBold.discovery), 252 | IconlyDetail(type: 'IconlyBold', title: 'document', iconData: IconlyBold.document), 253 | IconlyDetail(type: 'IconlyBold', title: 'download', iconData: IconlyBold.download), 254 | IconlyDetail(type: 'IconlyBold', title: 'edit', iconData: IconlyBold.edit), 255 | IconlyDetail(type: 'IconlyBold', title: 'editSquare', iconData: IconlyBold.editSquare), 256 | IconlyDetail(type: 'IconlyBold', title: 'filter', iconData: IconlyBold.filter), 257 | IconlyDetail(type: 'IconlyBold', title: 'filter_2', iconData: IconlyBold.filter_2), 258 | IconlyDetail(type: 'IconlyBold', title: 'folder', iconData: IconlyBold.folder), 259 | IconlyDetail(type: 'IconlyBold', title: 'game', iconData: IconlyBold.game), 260 | IconlyDetail(type: 'IconlyBold', title: 'graph', iconData: IconlyBold.graph), 261 | IconlyDetail(type: 'IconlyBold', title: 'heart', iconData: IconlyBold.heart), 262 | IconlyDetail(type: 'IconlyBold', title: 'hide', iconData: IconlyBold.hide), 263 | IconlyDetail(type: 'IconlyBold', title: 'home', iconData: IconlyBold.home), 264 | IconlyDetail(type: 'IconlyBold', title: 'image', iconData: IconlyBold.image), 265 | IconlyDetail(type: 'IconlyBold', title: 'image_2', iconData: IconlyBold.image_2), 266 | IconlyDetail(type: 'IconlyBold', title: 'info_circle', iconData: IconlyBold.info_circle), 267 | IconlyDetail(type: 'IconlyBold', title: 'info_square', iconData: IconlyBold.info_square), 268 | IconlyDetail(type: 'IconlyBold', title: 'location', iconData: IconlyBold.location), 269 | IconlyDetail(type: 'IconlyBold', title: 'lock', iconData: IconlyBold.lock), 270 | IconlyDetail(type: 'IconlyBold', title: 'login', iconData: IconlyBold.login), 271 | IconlyDetail(type: 'IconlyBold', title: 'logout', iconData: IconlyBold.logout), 272 | IconlyDetail(type: 'IconlyBold', title: 'message', iconData: IconlyBold.message), 273 | IconlyDetail(type: 'IconlyBold', title: 'more_circle', iconData: IconlyBold.more_circle), 274 | IconlyDetail(type: 'IconlyBold', title: 'more_square', iconData: IconlyBold.more_square), 275 | IconlyDetail(type: 'IconlyBold', title: 'notification', iconData: IconlyBold.notification), 276 | IconlyDetail(type: 'IconlyBold', title: 'paper', iconData: IconlyBold.paper), 277 | IconlyDetail(type: 'IconlyBold', title: 'paper_download', iconData: IconlyBold.paper_download), 278 | IconlyDetail(type: 'IconlyBold', title: 'paper_fail', iconData: IconlyBold.paper_fail), 279 | IconlyDetail(type: 'IconlyBold', title: 'paper_negative', iconData: IconlyBold.paper_negative), 280 | IconlyDetail(type: 'IconlyBold', title: 'paper_plus', iconData: IconlyBold.paper_plus), 281 | IconlyDetail(type: 'IconlyBold', title: 'paper_upload', iconData: IconlyBold.paper_upload), 282 | IconlyDetail(type: 'IconlyBold', title: 'password', iconData: IconlyBold.password), 283 | IconlyDetail(type: 'IconlyBold', title: 'play', iconData: IconlyBold.play), 284 | IconlyDetail(type: 'IconlyBold', title: 'plus', iconData: IconlyBold.plus), 285 | IconlyDetail(type: 'IconlyBold', title: 'profile', iconData: IconlyBold.profile), 286 | IconlyDetail(type: 'IconlyBold', title: 'scan', iconData: IconlyBold.scan), 287 | IconlyDetail(type: 'IconlyBold', title: 'search', iconData: IconlyBold.search), 288 | IconlyDetail(type: 'IconlyBold', title: 'send', iconData: IconlyBold.send), 289 | IconlyDetail(type: 'IconlyBold', title: 'setting', iconData: IconlyBold.setting), 290 | IconlyDetail(type: 'IconlyBold', title: 'shield_done', iconData: IconlyBold.shield_done), 291 | IconlyDetail(type: 'IconlyBold', title: 'shield_fail', iconData: IconlyBold.shield_fail), 292 | IconlyDetail(type: 'IconlyBold', title: 'show', iconData: IconlyBold.show), 293 | IconlyDetail(type: 'IconlyBold', title: 'star', iconData: IconlyBold.star), 294 | IconlyDetail(type: 'IconlyBold', title: 'swap', iconData: IconlyBold.swap), 295 | IconlyDetail(type: 'IconlyBold', title: 'tick_square', iconData: IconlyBold.tick_square), 296 | IconlyDetail(type: 'IconlyBold', title: 'ticket', iconData: IconlyBold.ticket), 297 | IconlyDetail(type: 'IconlyBold', title: 'ticket_star', iconData: IconlyBold.ticket_star), 298 | IconlyDetail(type: 'IconlyBold', title: 'time_circle', iconData: IconlyBold.time_circle), 299 | IconlyDetail(type: 'IconlyBold', title: 'time_square', iconData: IconlyBold.time_square), 300 | IconlyDetail(type: 'IconlyBold', title: 'unlock', iconData: IconlyBold.unlock), 301 | IconlyDetail(type: 'IconlyBold', title: 'upload', iconData: IconlyBold.upload), 302 | IconlyDetail(type: 'IconlyBold', title: 'user_2', iconData: IconlyBold.user_2), 303 | IconlyDetail(type: 'IconlyBold', title: 'user_3', iconData: IconlyBold.user_3), 304 | IconlyDetail(type: 'IconlyBold', title: 'video', iconData: IconlyBold.video), 305 | IconlyDetail(type: 'IconlyBold', title: 'voice', iconData: IconlyBold.voice), 306 | IconlyDetail(type: 'IconlyBold', title: 'voice_2', iconData: IconlyBold.voice_2), 307 | IconlyDetail(type: 'IconlyBold', title: 'volume_down', iconData: IconlyBold.volume_down), 308 | IconlyDetail(type: 'IconlyBold', title: 'volume_off', iconData: IconlyBold.volume_off), 309 | IconlyDetail(type: 'IconlyBold', title: 'volume_up', iconData: IconlyBold.volume_up), 310 | IconlyDetail(type: 'IconlyBold', title: 'wallet', iconData: IconlyBold.wallet), 311 | IconlyDetail(type: 'IconlyBold', title: 'work', iconData: IconlyBold.work), 312 | ]; 313 | --------------------------------------------------------------------------------