Commit fdcdb3c4 authored by Brian Egan's avatar Brian Egan

Initial commit of 4.7.0 icons with gallery app

parents
.DS_Store
.atom/
.idea
.packages
.pub/
build/
ios/.generated/
packages
pubspec.lock
.flutter-plugins
# font_awesome_flutter
The [Font Awesome](https://fontawesome.com) Icon pack available as set of Flutter Icons.
## Installation
This requires two steps:
### Install the dependency
In the `dependencies:` section of your `pubspec.yaml`, add the following line:
```yaml
font_awesome_flutter: 4.7.0
```
### Install the font asset
In the `flutter:` section of your `pubspec.yaml`, add the following section:
```yaml
fonts:
- family: FontAwesome # Do not change!
fonts:
- asset: packages/font_awesome_flutter/fonts/fontawesome-webfont.woff
```
## Usage
```dart
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
// ... later in the build method
new IconButton(
icon: new Icon(FontAwesomeIcons.gamepad),
onPressed: () { print("Pressed"); }
)
```
## Example
View the Flutter app in the `example` directory to see all the available `FontAwesomeIcons`.
\ No newline at end of file
.DS_Store
.atom/
.idea
.packages
.pub/
build/
ios/.generated/
packages
pubspec.lock
.flutter-plugins
# example
A new Flutter project.
## Getting Started
For help getting started with Flutter, view our online
[documentation](http://flutter.io/).
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$/android">
<sourceFolder url="file://$MODULE_DIR$/android/app/src/main/java" isTestSource="false" />
</content>
<orderEntry type="jdk" jdkName="Android API 25 Platform" jdkType="Android SDK" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="Flutter for Android" level="project" />
</component>
</module>
*.iml
.gradle
/local.properties
/.idea/workspace.xml
/.idea/libraries
.DS_Store
/build
/captures
GeneratedPluginRegistrant.java
/gradle
/gradlew
/gradlew.bat
def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
localPropertiesFile.withInputStream { stream ->
localProperties.load(stream)
}
}
def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}
apply plugin: 'com.android.application'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
android {
compileSdkVersion 25
buildToolsVersion '25.0.3'
lintOptions {
disable 'InvalidPackage'
}
defaultConfig {
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.yourcompany.example"
}
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug
}
}
}
flutter {
source '../..'
}
dependencies {
androidTestCompile 'com.android.support:support-annotations:25.4.0'
androidTestCompile 'com.android.support.test:runner:0.5'
androidTestCompile 'com.android.support.test:rules:0.5'
}
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.yourcompany.example"
android:versionCode="1"
android:versionName="0.0.1">
<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="21" />
<!-- The INTERNET permission is required for development. Specifically,
flutter needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
<uses-permission android:name="android.permission.INTERNET"/>
<!-- io.flutter.app.FlutterApplication is an android.app.Application that
calls FlutterMain.startInitialization(this); in its onCreate method.
In most cases you can leave this as-is, but you if you want to provide
additional functionality it is fine to subclass or reimplement
FlutterApplication and put your custom class here. -->
<application android:name="io.flutter.app.FlutterApplication" android:label="Font Awesome Flutter Gallery" android:icon="@mipmap/ic_launcher">
<activity android:name=".MainActivity"
android:launchMode="singleTop"
android:theme="@android:style/Theme.Black.NoTitleBar"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>
package com.yourcompany.example;
import android.os.Bundle;
import io.flutter.app.FlutterActivity;
import io.flutter.plugins.GeneratedPluginRegistrant;
public class MainActivity extends FlutterActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
GeneratedPluginRegistrant.registerWith(this);
}
}
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
}
}
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
project.evaluationDependsOn(':app')
}
task clean(type: Delete) {
delete rootProject.buildDir
}
task wrapper(type: Wrapper) {
gradleVersion = '2.14.1'
}
org.gradle.jvmargs=-Xmx1536M
include ':app'
def flutterProjectRoot = rootProject.projectDir.parentFile.toPath()
def plugins = new Properties()
def pluginsFile = new File(flutterProjectRoot.toFile(), '.flutter-plugins')
if (pluginsFile.exists()) {
pluginsFile.withInputStream { stream -> plugins.load(stream) }
}
plugins.each { name, path ->
def pluginDirectory = flutterProjectRoot.resolve(path).resolve('android').toFile()
include ":$name"
project(":$name").projectDir = pluginDirectory
}
<?xml version="1.0" encoding="UTF-8"?>
<module type="FLUTTER_MODULE_TYPE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/.pub" />
<excludeFolder url="file://$MODULE_DIR$/build" />
<excludeFolder url="file://$MODULE_DIR$/packages" />
</content>
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="Dart SDK" level="project" />
<orderEntry type="library" name="Dart Packages" level="project" />
</component>
</module>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$/android">
<sourceFolder url="file://$MODULE_DIR$/android/app/src/main/java" isTestSource="false" />
</content>
<orderEntry type="jdk" jdkName="Android API 25 Platform" jdkType="Android SDK" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="Flutter for Android" level="project" />
</component>
</module>
.idea/
.vagrant/
.sconsign.dblite
.svn/
.DS_Store
*.swp
profile
DerivedData/
build/
GeneratedPluginRegistrant.h
GeneratedPluginRegistrant.m
*.pbxuser
*.mode1v3
*.mode2v3
*.perspectivev3
!default.pbxuser
!default.mode1v3
!default.mode2v3
!default.perspectivev3
xcuserdata
*.moved-aside
*.pyc
*sync/
Icon?
.tags*
/Flutter/app.flx
/Flutter/app.zip
/Flutter/App.framework
/Flutter/Flutter.framework
/Flutter/Generated.xcconfig
/ServiceDefinitions.json
Pods/
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>App</string>
<key>CFBundleIdentifier</key>
<string>io.flutter.flutter.app</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>App</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>arm64</string>
</array>
<key>MinimumOSVersion</key>
<string>8.0</string>
</dict>
</plist>
#include "Generated.xcconfig"
#include "Generated.xcconfig"
# Uncomment this line to define a global platform for your project
# platform :ios, '9.0'
if ENV['FLUTTER_FRAMEWORK_DIR'] == nil
abort('Please set FLUTTER_FRAMEWORK_DIR to the directory containing Flutter.framework')
end
target 'Runner' do
# Pods for Runner
# Flutter Pods
pod 'Flutter', :path => ENV['FLUTTER_FRAMEWORK_DIR']
if File.exists? '../.flutter-plugins'
flutter_root = File.expand_path('..')
File.foreach('../.flutter-plugins') { |line|
plugin = line.split(pattern='=')
if plugin.length == 2
name = plugin[0].strip()
path = plugin[1].strip()
resolved_path = File.expand_path("#{path}/ios", flutter_root)
pod name, :path => resolved_path
else
puts "Invalid plugin specification: #{line}"
end
}
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
end
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
3B80C3941E831B6300D905FE /* App.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; };
3B80C3951E831B6300D905FE /* App.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; };
9705A1C71CF904A300538489 /* Flutter.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
9740EEB41CF90195004384FC /* Debug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 9740EEB21CF90195004384FC /* Debug.xcconfig */; };
9740EEB51CF90195004384FC /* Generated.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 9740EEB31CF90195004384FC /* Generated.xcconfig */; };
9740EEBB1CF902C7004384FC /* app.flx in Resources */ = {isa = PBXBuildFile; fileRef = 9740EEB71CF902C7004384FC /* app.flx */; };
978B8F6F1D3862AE00F588F7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */; };
97C146F31CF9000F007C117D /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 97C146F21CF9000F007C117D /* main.m */; };
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
/* End PBXBuildFile section */
/* Begin PBXCopyFilesBuildPhase section */
9705A1C41CF9048500538489 /* Embed Frameworks */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 10;
files = (
3B80C3951E831B6300D905FE /* App.framework in Embed Frameworks */,
9705A1C71CF904A300538489 /* Flutter.framework in Embed Frameworks */,
);
name = "Embed Frameworks";
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; };
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; };
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; };
3B80C3931E831B6300D905FE /* App.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = App.framework; path = Flutter/App.framework; sourceTree = "<group>"; };
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; };
7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = "<group>"; };
9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = "<group>"; };
9740EEB71CF902C7004384FC /* app.flx */ = {isa = PBXFileReference; lastKnownFileType = file; name = app.flx; path = Flutter/app.flx; sourceTree = "<group>"; };
9740EEBA1CF902C7004384FC /* Flutter.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Flutter.framework; path = Flutter/Flutter.framework; sourceTree = "<group>"; };
97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
97C146F21CF9000F007C117D /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
97C146EB1CF9000F007C117D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */,
3B80C3941E831B6300D905FE /* App.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
9740EEB11CF90186004384FC /* Flutter */ = {
isa = PBXGroup;
children = (
9740EEB71CF902C7004384FC /* app.flx */,
3B80C3931E831B6300D905FE /* App.framework */,
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,
9740EEBA1CF902C7004384FC /* Flutter.framework */,
9740EEB21CF90195004384FC /* Debug.xcconfig */,
7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
9740EEB31CF90195004384FC /* Generated.xcconfig */,
);
name = Flutter;
sourceTree = "<group>";
};
97C146E51CF9000F007C117D = {
isa = PBXGroup;
children = (
9740EEB11CF90186004384FC /* Flutter */,
97C146F01CF9000F007C117D /* Runner */,
97C146EF1CF9000F007C117D /* Products */,
CF3B75C9A7D2FA2A4C99F110 /* Frameworks */,
);
sourceTree = "<group>";
};
97C146EF1CF9000F007C117D /* Products */ = {
isa = PBXGroup;
children = (
97C146EE1CF9000F007C117D /* Runner.app */,
);
name = Products;
sourceTree = "<group>";
};
97C146F01CF9000F007C117D /* Runner */ = {
isa = PBXGroup;
children = (
7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */,
7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */,
97C146FA1CF9000F007C117D /* Main.storyboard */,
97C146FD1CF9000F007C117D /* Assets.xcassets */,
97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */,
97C147021CF9000F007C117D /* Info.plist */,
97C146F11CF9000F007C117D /* Supporting Files */,
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */,
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,
);
path = Runner;
sourceTree = "<group>";
};
97C146F11CF9000F007C117D /* Supporting Files */ = {
isa = PBXGroup;
children = (
97C146F21CF9000F007C117D /* main.m */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
97C146ED1CF9000F007C117D /* Runner */ = {
isa = PBXNativeTarget;
buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
buildPhases = (
9740EEB61CF901F6004384FC /* Run Script */,
97C146EA1CF9000F007C117D /* Sources */,
97C146EB1CF9000F007C117D /* Frameworks */,
97C146EC1CF9000F007C117D /* Resources */,
9705A1C41CF9048500538489 /* Embed Frameworks */,
3B06AD1E1E4923F5004D2608 /* Thin Binary */,
);
buildRules = (
);
dependencies = (
);
name = Runner;
productName = Runner;
productReference = 97C146EE1CF9000F007C117D /* Runner.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
97C146E61CF9000F007C117D /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0830;
ORGANIZATIONNAME = "The Chromium Authors";
TargetAttributes = {
97C146ED1CF9000F007C117D = {
CreatedOnToolsVersion = 7.3.1;
};
};
};
buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
mainGroup = 97C146E51CF9000F007C117D;
productRefGroup = 97C146EF1CF9000F007C117D /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
97C146ED1CF9000F007C117D /* Runner */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
97C146EC1CF9000F007C117D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
9740EEBB1CF902C7004384FC /* app.flx in Resources */,
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */,
9740EEB51CF90195004384FC /* Generated.xcconfig in Resources */,
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,
9740EEB41CF90195004384FC /* Debug.xcconfig in Resources */,
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Thin Binary";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" thin";
};
9740EEB61CF901F6004384FC /* Run Script */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Run Script";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
};
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
97C146EA1CF9000F007C117D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
978B8F6F1D3862AE00F588F7 /* AppDelegate.m in Sources */,
97C146F31CF9000F007C117D /* main.m in Sources */,
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXVariantGroup section */
97C146FA1CF9000F007C117D /* Main.storyboard */ = {
isa = PBXVariantGroup;
children = (
97C146FB1CF9000F007C117D /* Base */,
);
name = Main.storyboard;
sourceTree = "<group>";
};
97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = {
isa = PBXVariantGroup;
children = (
97C147001CF9000F007C117D /* Base */,
);
name = LaunchScreen.storyboard;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
97C147031CF9000F007C117D /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
97C147041CF9000F007C117D /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
};
name = Release;
};
97C147061CF9000F007C117D /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
buildSettings = {
ARCHS = arm64;
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
PRODUCT_BUNDLE_IDENTIFIER = com.yourcompany.example;
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Debug;
};
97C147071CF9000F007C117D /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
buildSettings = {
ARCHS = arm64;
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
PRODUCT_BUNDLE_IDENTIFIER = com.yourcompany.example;
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = {
isa = XCConfigurationList;
buildConfigurations = (
97C147031CF9000F007C117D /* Debug */,
97C147041CF9000F007C117D /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = {
isa = XCConfigurationList;
buildConfigurations = (
97C147061CF9000F007C117D /* Debug */,
97C147071CF9000F007C117D /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 97C146E61CF9000F007C117D /* Project object */;
}
<?xml version="1.0" encoding="UTF-8"?>
<Workspace
version = "1.0">
<FileRef
location = "group:Runner.xcodeproj">
</FileRef>
</Workspace>
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "0830"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES">
<Testables>
</Testables>
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</MacroExpansion>
<AdditionalOptions>
</AdditionalOptions>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
allowLocationSimulation = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
<AdditionalOptions>
</AdditionalOptions>
</LaunchAction>
<ProfileAction
buildConfiguration = "Release"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>
<?xml version="1.0" encoding="UTF-8"?>
<Workspace
version = "1.0">
<FileRef
location = "group:Runner.xcodeproj">
</FileRef>
</Workspace>
#import <UIKit/UIKit.h>
#import <Flutter/Flutter.h>
@interface AppDelegate : FlutterAppDelegate
@end
#include "AppDelegate.h"
#include "GeneratedPluginRegistrant.h"
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[GeneratedPluginRegistrant registerWithRegistry:self];
// Override point for customization after application launch.
return [super application:application didFinishLaunchingWithOptions:launchOptions];
}
@end
{
"images" : [
{
"size" : "20x20",
"idiom" : "iphone",
"filename" : "Icon-App-20x20@2x.png",
"scale" : "2x"
},
{
"size" : "20x20",
"idiom" : "iphone",
"filename" : "Icon-App-20x20@3x.png",
"scale" : "3x"
},
{
"size" : "29x29",
"idiom" : "iphone",
"filename" : "Icon-App-29x29@1x.png",
"scale" : "1x"
},
{
"size" : "29x29",
"idiom" : "iphone",
"filename" : "Icon-App-29x29@2x.png",
"scale" : "2x"
},
{
"size" : "29x29",
"idiom" : "iphone",
"filename" : "Icon-App-29x29@3x.png",
"scale" : "3x"
},
{
"size" : "40x40",
"idiom" : "iphone",
"filename" : "Icon-App-40x40@2x.png",
"scale" : "2x"
},
{
"size" : "40x40",
"idiom" : "iphone",
"filename" : "Icon-App-40x40@3x.png",
"scale" : "3x"
},
{
"size" : "60x60",
"idiom" : "iphone",
"filename" : "Icon-App-60x60@2x.png",
"scale" : "2x"
},
{
"size" : "60x60",
"idiom" : "iphone",
"filename" : "Icon-App-60x60@3x.png",
"scale" : "3x"
},
{
"size" : "20x20",
"idiom" : "ipad",
"filename" : "Icon-App-20x20@1x.png",
"scale" : "1x"
},
{
"size" : "20x20",
"idiom" : "ipad",
"filename" : "Icon-App-20x20@2x.png",
"scale" : "2x"
},
{
"size" : "29x29",
"idiom" : "ipad",
"filename" : "Icon-App-29x29@1x.png",
"scale" : "1x"
},
{
"size" : "29x29",
"idiom" : "ipad",
"filename" : "Icon-App-29x29@2x.png",
"scale" : "2x"
},
{
"size" : "40x40",
"idiom" : "ipad",
"filename" : "Icon-App-40x40@1x.png",
"scale" : "1x"
},
{
"size" : "40x40",
"idiom" : "ipad",
"filename" : "Icon-App-40x40@2x.png",
"scale" : "2x"
},
{
"size" : "76x76",
"idiom" : "ipad",
"filename" : "Icon-App-76x76@1x.png",
"scale" : "1x"
},
{
"size" : "76x76",
"idiom" : "ipad",
"filename" : "Icon-App-76x76@2x.png",
"scale" : "2x"
},
{
"size" : "83.5x83.5",
"idiom" : "ipad",
"filename" : "Icon-App-83.5x83.5@2x.png",
"scale" : "2x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="10117" systemVersion="15F34" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" initialViewController="01J-lp-oVM">
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="10085"/>
</dependencies>
<scenes>
<!--View Controller-->
<scene sceneID="EHf-IW-A2E">
<objects>
<viewController id="01J-lp-oVM" sceneMemberID="viewController">
<layoutGuides>
<viewControllerLayoutGuide type="top" id="Llm-lL-Icb"/>
<viewControllerLayoutGuide type="bottom" id="xb3-aO-Qok"/>
</layoutGuides>
<view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
<rect key="frame" x="0.0" y="0.0" width="600" height="600"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
</view>
</viewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
</objects>
<point key="canvasLocation" x="53" y="375"/>
</scene>
</scenes>
</document>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="10117" systemVersion="15F34" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" initialViewController="BYZ-38-t0r">
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="10085"/>
</dependencies>
<scenes>
<!--Flutter View Controller-->
<scene sceneID="tne-QT-ifu">
<objects>
<viewController id="BYZ-38-t0r" customClass="FlutterViewController" sceneMemberID="viewController">
<layoutGuides>
<viewControllerLayoutGuide type="top" id="y3c-jy-aDJ"/>
<viewControllerLayoutGuide type="bottom" id="wfy-db-euE"/>
</layoutGuides>
<view key="view" contentMode="scaleToFill" id="8bC-Xf-vdC">
<rect key="frame" x="0.0" y="0.0" width="600" height="600"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
</view>
</viewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="dkx-z0-nzr" sceneMemberID="firstResponder"/>
</objects>
</scene>
</scenes>
</document>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>example</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIMainStoryboardFile</key>
<string>Main</string>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>arm64</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
</dict>
</plist>
#import <UIKit/UIKit.h>
#import <Flutter/Flutter.h>
#import "AppDelegate.h"
int main(int argc, char * argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}
import 'package:flutter/material.dart';
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
void main() {
runApp(new FontAwesomeGalleryApp());
}
class FontAwesomeGalleryApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'Font Awesome Flutter Gallery',
theme: new ThemeData(
iconTheme: new IconThemeData(size: 36.0, color: Colors.black87),
primarySwatch: Colors.blueGrey,
textTheme: new TextTheme(
body1: new TextStyle(fontSize: 16.0, color: Colors.black87),
),
),
home: new FontAwesomeGalleryHome(),
);
}
}
class FontAwesomeGalleryHome extends StatefulWidget {
@override
State<StatefulWidget> createState() => new FontAwesomeGalleryHomeState();
}
class FontAwesomeGalleryHomeState extends State<FontAwesomeGalleryHome> {
var searchTerm = "";
var isSearching = false;
@override
Widget build(BuildContext context) {
return new Scaffold(
appBar: new AppBar(
title: isSearching
? new TextField(
onChanged: (text) => setState(() => searchTerm = text),
autofocus: true,
style: new TextStyle(fontSize: 18.0),
)
: new Text("Font Awesome Flutter Gallery"),
actions: isSearching
? [
new IconButton(
icon: new Icon(FontAwesomeIcons.timesCircle),
onPressed: () => setState(() {
isSearching = false;
searchTerm = "";
}))
]
: [
new IconButton(
icon: new Icon(FontAwesomeIcons.search),
onPressed: () => setState(() => isSearching = true))
],
),
body: new GridView.count(
crossAxisCount:
MediaQuery.of(context).orientation == Orientation.portrait
? 2
: 3,
children: (icons..sort())
.where((icon) =>
searchTerm.isEmpty ||
icon.title.toLowerCase().startsWith(searchTerm.toLowerCase()))
.map((icon) => new InkWell(
onTap: () {
Navigator.push(
context,
new MaterialPageRoute<Null>(
builder: (BuildContext context) {
return new Container(
color: Colors.white,
child: new SizedBox.expand(
child: new Hero(
tag: icon,
child: new Icon(
icon.iconData,
size: 100.0,
),
),
),
);
},
),
);
},
child: new Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
new Hero(tag: icon, child: new Icon(icon.iconData)),
new Container(
padding: new EdgeInsets.only(top: 16.0),
child: new Text(icon.title))
],
),
))
.toList()),
);
}
}
final List<IconDefinition> icons = <IconDefinition>[
new IconDefinition(FontAwesomeIcons.glass, "glass"),
new IconDefinition(FontAwesomeIcons.music, "music"),
new IconDefinition(FontAwesomeIcons.search, "search"),
new IconDefinition(FontAwesomeIcons.envelopeO, "envelopeO"),
new IconDefinition(FontAwesomeIcons.heart, "heart"),
new IconDefinition(FontAwesomeIcons.star, "star"),
new IconDefinition(FontAwesomeIcons.starO, "starO"),
new IconDefinition(FontAwesomeIcons.user, "user"),
new IconDefinition(FontAwesomeIcons.film, "film"),
new IconDefinition(FontAwesomeIcons.thLarge, "thLarge"),
new IconDefinition(FontAwesomeIcons.th, "th"),
new IconDefinition(FontAwesomeIcons.thList, "thList"),
new IconDefinition(FontAwesomeIcons.check, "check"),
new IconDefinition(FontAwesomeIcons.remove, "remove"),
new IconDefinition(FontAwesomeIcons.close, "close"),
new IconDefinition(FontAwesomeIcons.times, "times"),
new IconDefinition(FontAwesomeIcons.searchPlus, "searchPlus"),
new IconDefinition(FontAwesomeIcons.searchMinus, "searchMinus"),
new IconDefinition(FontAwesomeIcons.powerOff, "powerOff"),
new IconDefinition(FontAwesomeIcons.signal, "signal"),
new IconDefinition(FontAwesomeIcons.gear, "gear"),
new IconDefinition(FontAwesomeIcons.cog, "cog"),
new IconDefinition(FontAwesomeIcons.trashO, "trashO"),
new IconDefinition(FontAwesomeIcons.home, "home"),
new IconDefinition(FontAwesomeIcons.fileO, "fileO"),
new IconDefinition(FontAwesomeIcons.clockO, "clockO"),
new IconDefinition(FontAwesomeIcons.road, "road"),
new IconDefinition(FontAwesomeIcons.download, "download"),
new IconDefinition(FontAwesomeIcons.arrowCircleODown, "arrowCircleODown"),
new IconDefinition(FontAwesomeIcons.arrowCircleOUp, "arrowCircleOUp"),
new IconDefinition(FontAwesomeIcons.inbox, "inbox"),
new IconDefinition(FontAwesomeIcons.playCircleO, "playCircleO"),
new IconDefinition(FontAwesomeIcons.rotateRight, "rotateRight"),
new IconDefinition(FontAwesomeIcons.repeat, "repeat"),
new IconDefinition(FontAwesomeIcons.refresh, "refresh"),
new IconDefinition(FontAwesomeIcons.listAlt, "listAlt"),
new IconDefinition(FontAwesomeIcons.lock, "lock"),
new IconDefinition(FontAwesomeIcons.flag, "flag"),
new IconDefinition(FontAwesomeIcons.headphones, "headphones"),
new IconDefinition(FontAwesomeIcons.volumeOff, "volumeOff"),
new IconDefinition(FontAwesomeIcons.volumeDown, "volumeDown"),
new IconDefinition(FontAwesomeIcons.volumeUp, "volumeUp"),
new IconDefinition(FontAwesomeIcons.qrcode, "qrcode"),
new IconDefinition(FontAwesomeIcons.barcode, "barcode"),
new IconDefinition(FontAwesomeIcons.tag, "tag"),
new IconDefinition(FontAwesomeIcons.tags, "tags"),
new IconDefinition(FontAwesomeIcons.book, "book"),
new IconDefinition(FontAwesomeIcons.bookmark, "bookmark"),
new IconDefinition(FontAwesomeIcons.print, "print"),
new IconDefinition(FontAwesomeIcons.camera, "camera"),
new IconDefinition(FontAwesomeIcons.font, "font"),
new IconDefinition(FontAwesomeIcons.bold, "bold"),
new IconDefinition(FontAwesomeIcons.italic, "italic"),
new IconDefinition(FontAwesomeIcons.textHeight, "textHeight"),
new IconDefinition(FontAwesomeIcons.textWidth, "textWidth"),
new IconDefinition(FontAwesomeIcons.alignLeft, "alignLeft"),
new IconDefinition(FontAwesomeIcons.alignCenter, "alignCenter"),
new IconDefinition(FontAwesomeIcons.alignRight, "alignRight"),
new IconDefinition(FontAwesomeIcons.alignJustify, "alignJustify"),
new IconDefinition(FontAwesomeIcons.list, "list"),
new IconDefinition(FontAwesomeIcons.dedent, "dedent"),
new IconDefinition(FontAwesomeIcons.outdent, "outdent"),
new IconDefinition(FontAwesomeIcons.indent, "indent"),
new IconDefinition(FontAwesomeIcons.videoCamera, "videoCamera"),
new IconDefinition(FontAwesomeIcons.photo, "photo"),
new IconDefinition(FontAwesomeIcons.image, "image"),
new IconDefinition(FontAwesomeIcons.pictureO, "pictureO"),
new IconDefinition(FontAwesomeIcons.pencil, "pencil"),
new IconDefinition(FontAwesomeIcons.mapMarker, "mapMarker"),
new IconDefinition(FontAwesomeIcons.adjust, "adjust"),
new IconDefinition(FontAwesomeIcons.tint, "tint"),
new IconDefinition(FontAwesomeIcons.edit, "edit"),
new IconDefinition(FontAwesomeIcons.pencilSquareO, "pencilSquareO"),
new IconDefinition(FontAwesomeIcons.shareSquareO, "shareSquareO"),
new IconDefinition(FontAwesomeIcons.checkSquareO, "checkSquareO"),
new IconDefinition(FontAwesomeIcons.arrows, "arrows"),
new IconDefinition(FontAwesomeIcons.stepBackward, "stepBackward"),
new IconDefinition(FontAwesomeIcons.fastBackward, "fastBackward"),
new IconDefinition(FontAwesomeIcons.backward, "backward"),
new IconDefinition(FontAwesomeIcons.play, "play"),
new IconDefinition(FontAwesomeIcons.pause, "pause"),
new IconDefinition(FontAwesomeIcons.stop, "stop"),
new IconDefinition(FontAwesomeIcons.forward, "forward"),
new IconDefinition(FontAwesomeIcons.fastForward, "fastForward"),
new IconDefinition(FontAwesomeIcons.stepForward, "stepForward"),
new IconDefinition(FontAwesomeIcons.eject, "eject"),
new IconDefinition(FontAwesomeIcons.chevronLeft, "chevronLeft"),
new IconDefinition(FontAwesomeIcons.chevronRight, "chevronRight"),
new IconDefinition(FontAwesomeIcons.plusCircle, "plusCircle"),
new IconDefinition(FontAwesomeIcons.minusCircle, "minusCircle"),
new IconDefinition(FontAwesomeIcons.timesCircle, "timesCircle"),
new IconDefinition(FontAwesomeIcons.checkCircle, "checkCircle"),
new IconDefinition(FontAwesomeIcons.questionCircle, "questionCircle"),
new IconDefinition(FontAwesomeIcons.infoCircle, "infoCircle"),
new IconDefinition(FontAwesomeIcons.crosshairs, "crosshairs"),
new IconDefinition(FontAwesomeIcons.timesCircleO, "timesCircleO"),
new IconDefinition(FontAwesomeIcons.checkCircleO, "checkCircleO"),
new IconDefinition(FontAwesomeIcons.ban, "ban"),
new IconDefinition(FontAwesomeIcons.arrowLeft, "arrowLeft"),
new IconDefinition(FontAwesomeIcons.arrowRight, "arrowRight"),
new IconDefinition(FontAwesomeIcons.arrowUp, "arrowUp"),
new IconDefinition(FontAwesomeIcons.arrowDown, "arrowDown"),
new IconDefinition(FontAwesomeIcons.mailForward, "mailForward"),
new IconDefinition(FontAwesomeIcons.share, "share"),
new IconDefinition(FontAwesomeIcons.expand, "expand"),
new IconDefinition(FontAwesomeIcons.compress, "compress"),
new IconDefinition(FontAwesomeIcons.plus, "plus"),
new IconDefinition(FontAwesomeIcons.minus, "minus"),
new IconDefinition(FontAwesomeIcons.asterisk, "asterisk"),
new IconDefinition(FontAwesomeIcons.exclamationCircle, "exclamationCircle"),
new IconDefinition(FontAwesomeIcons.gift, "gift"),
new IconDefinition(FontAwesomeIcons.leaf, "leaf"),
new IconDefinition(FontAwesomeIcons.fire, "fire"),
new IconDefinition(FontAwesomeIcons.eye, "eye"),
new IconDefinition(FontAwesomeIcons.eyeSlash, "eyeSlash"),
new IconDefinition(FontAwesomeIcons.warning, "warning"),
new IconDefinition(
FontAwesomeIcons.exclamationTriangle, "exclamationTriangle"),
new IconDefinition(FontAwesomeIcons.plane, "plane"),
new IconDefinition(FontAwesomeIcons.calendar, "calendar"),
new IconDefinition(FontAwesomeIcons.random, "random"),
new IconDefinition(FontAwesomeIcons.comment, "comment"),
new IconDefinition(FontAwesomeIcons.magnet, "magnet"),
new IconDefinition(FontAwesomeIcons.chevronUp, "chevronUp"),
new IconDefinition(FontAwesomeIcons.chevronDown, "chevronDown"),
new IconDefinition(FontAwesomeIcons.retweet, "retweet"),
new IconDefinition(FontAwesomeIcons.shoppingCart, "shoppingCart"),
new IconDefinition(FontAwesomeIcons.folder, "folder"),
new IconDefinition(FontAwesomeIcons.folderOpen, "folderOpen"),
new IconDefinition(FontAwesomeIcons.arrowsV, "arrowsV"),
new IconDefinition(FontAwesomeIcons.arrowsH, "arrowsH"),
new IconDefinition(FontAwesomeIcons.barChartO, "barChartO"),
new IconDefinition(FontAwesomeIcons.barChart, "barChart"),
new IconDefinition(FontAwesomeIcons.twitterSquare, "twitterSquare"),
new IconDefinition(FontAwesomeIcons.facebookSquare, "facebookSquare"),
new IconDefinition(FontAwesomeIcons.cameraRetro, "cameraRetro"),
new IconDefinition(FontAwesomeIcons.key, "key"),
new IconDefinition(FontAwesomeIcons.gears, "gears"),
new IconDefinition(FontAwesomeIcons.cogs, "cogs"),
new IconDefinition(FontAwesomeIcons.comments, "comments"),
new IconDefinition(FontAwesomeIcons.thumbsOUp, "thumbsOUp"),
new IconDefinition(FontAwesomeIcons.thumbsODown, "thumbsODown"),
new IconDefinition(FontAwesomeIcons.starHalf, "starHalf"),
new IconDefinition(FontAwesomeIcons.heartO, "heartO"),
new IconDefinition(FontAwesomeIcons.signOut, "signOut"),
new IconDefinition(FontAwesomeIcons.linkedinSquare, "linkedinSquare"),
new IconDefinition(FontAwesomeIcons.thumbTack, "thumbTack"),
new IconDefinition(FontAwesomeIcons.externalLink, "externalLink"),
new IconDefinition(FontAwesomeIcons.signIn, "signIn"),
new IconDefinition(FontAwesomeIcons.trophy, "trophy"),
new IconDefinition(FontAwesomeIcons.githubSquare, "githubSquare"),
new IconDefinition(FontAwesomeIcons.upload, "upload"),
new IconDefinition(FontAwesomeIcons.lemonO, "lemonO"),
new IconDefinition(FontAwesomeIcons.phone, "phone"),
new IconDefinition(FontAwesomeIcons.squareO, "squareO"),
new IconDefinition(FontAwesomeIcons.bookmarkO, "bookmarkO"),
new IconDefinition(FontAwesomeIcons.phoneSquare, "phoneSquare"),
new IconDefinition(FontAwesomeIcons.twitter, "twitter"),
new IconDefinition(FontAwesomeIcons.facebook, "facebook"),
new IconDefinition(FontAwesomeIcons.github, "github"),
new IconDefinition(FontAwesomeIcons.unlock, "unlock"),
new IconDefinition(FontAwesomeIcons.creditCard, "creditCard"),
new IconDefinition(FontAwesomeIcons.feed, "feed"),
new IconDefinition(FontAwesomeIcons.rss, "rss"),
new IconDefinition(FontAwesomeIcons.hddO, "hddO"),
new IconDefinition(FontAwesomeIcons.bullhorn, "bullhorn"),
new IconDefinition(FontAwesomeIcons.bell, "bell"),
new IconDefinition(FontAwesomeIcons.certificate, "certificate"),
new IconDefinition(FontAwesomeIcons.handORight, "handORight"),
new IconDefinition(FontAwesomeIcons.handOLeft, "handOLeft"),
new IconDefinition(FontAwesomeIcons.handOUp, "handOUp"),
new IconDefinition(FontAwesomeIcons.handODown, "handODown"),
new IconDefinition(FontAwesomeIcons.arrowCircleLeft, "arrowCircleLeft"),
new IconDefinition(FontAwesomeIcons.arrowCircleRight, "arrowCircleRight"),
new IconDefinition(FontAwesomeIcons.arrowCircleUp, "arrowCircleUp"),
new IconDefinition(FontAwesomeIcons.arrowCircleDown, "arrowCircleDown"),
new IconDefinition(FontAwesomeIcons.globe, "globe"),
new IconDefinition(FontAwesomeIcons.wrench, "wrench"),
new IconDefinition(FontAwesomeIcons.tasks, "tasks"),
new IconDefinition(FontAwesomeIcons.filter, "filter"),
new IconDefinition(FontAwesomeIcons.briefcase, "briefcase"),
new IconDefinition(FontAwesomeIcons.arrowsAlt, "arrowsAlt"),
new IconDefinition(FontAwesomeIcons.group, "group"),
new IconDefinition(FontAwesomeIcons.users, "users"),
new IconDefinition(FontAwesomeIcons.chain, "chain"),
new IconDefinition(FontAwesomeIcons.link, "link"),
new IconDefinition(FontAwesomeIcons.cloud, "cloud"),
new IconDefinition(FontAwesomeIcons.flask, "flask"),
new IconDefinition(FontAwesomeIcons.cut, "cut"),
new IconDefinition(FontAwesomeIcons.scissors, "scissors"),
new IconDefinition(FontAwesomeIcons.copy, "copy"),
new IconDefinition(FontAwesomeIcons.filesO, "filesO"),
new IconDefinition(FontAwesomeIcons.paperclip, "paperclip"),
new IconDefinition(FontAwesomeIcons.save, "save"),
new IconDefinition(FontAwesomeIcons.floppyO, "floppyO"),
new IconDefinition(FontAwesomeIcons.square, "square"),
new IconDefinition(FontAwesomeIcons.navIcon, "navIcon"),
new IconDefinition(FontAwesomeIcons.reorder, "reorder"),
new IconDefinition(FontAwesomeIcons.bars, "bars"),
new IconDefinition(FontAwesomeIcons.listUl, "listUl"),
new IconDefinition(FontAwesomeIcons.listOl, "listOl"),
new IconDefinition(FontAwesomeIcons.strikethrough, "strikethrough"),
new IconDefinition(FontAwesomeIcons.underline, "underline"),
new IconDefinition(FontAwesomeIcons.table, "table"),
new IconDefinition(FontAwesomeIcons.magic, "magic"),
new IconDefinition(FontAwesomeIcons.truck, "truck"),
new IconDefinition(FontAwesomeIcons.pinterest, "pinterest"),
new IconDefinition(FontAwesomeIcons.pinterestSquare, "pinterestSquare"),
new IconDefinition(FontAwesomeIcons.googlePlusSquare, "googlePlusSquare"),
new IconDefinition(FontAwesomeIcons.googlePlus, "googlePlus"),
new IconDefinition(FontAwesomeIcons.money, "money"),
new IconDefinition(FontAwesomeIcons.caretDown, "caretDown"),
new IconDefinition(FontAwesomeIcons.caretUp, "caretUp"),
new IconDefinition(FontAwesomeIcons.caretLeft, "caretLeft"),
new IconDefinition(FontAwesomeIcons.caretRight, "caretRight"),
new IconDefinition(FontAwesomeIcons.columns, "columns"),
new IconDefinition(FontAwesomeIcons.unsorted, "unsorted"),
new IconDefinition(FontAwesomeIcons.sort, "sort"),
new IconDefinition(FontAwesomeIcons.sortDown, "sortDown"),
new IconDefinition(FontAwesomeIcons.sortDesc, "sortDesc"),
new IconDefinition(FontAwesomeIcons.sortUp, "sortUp"),
new IconDefinition(FontAwesomeIcons.sortAsc, "sortAsc"),
new IconDefinition(FontAwesomeIcons.envelope, "envelope"),
new IconDefinition(FontAwesomeIcons.linkedin, "linkedin"),
new IconDefinition(FontAwesomeIcons.rotateLeft, "rotateLeft"),
new IconDefinition(FontAwesomeIcons.undo, "undo"),
new IconDefinition(FontAwesomeIcons.legal, "legal"),
new IconDefinition(FontAwesomeIcons.gavel, "gavel"),
new IconDefinition(FontAwesomeIcons.dashboard, "dashboard"),
new IconDefinition(FontAwesomeIcons.tachometer, "tachometer"),
new IconDefinition(FontAwesomeIcons.commentO, "commentO"),
new IconDefinition(FontAwesomeIcons.commentsO, "commentsO"),
new IconDefinition(FontAwesomeIcons.flash, "flash"),
new IconDefinition(FontAwesomeIcons.bolt, "bolt"),
new IconDefinition(FontAwesomeIcons.sitemap, "sitemap"),
new IconDefinition(FontAwesomeIcons.umbrella, "umbrella"),
new IconDefinition(FontAwesomeIcons.paste, "paste"),
new IconDefinition(FontAwesomeIcons.clipboard, "clipboard"),
new IconDefinition(FontAwesomeIcons.lightbulbO, "lightbulbO"),
new IconDefinition(FontAwesomeIcons.exchange, "exchange"),
new IconDefinition(FontAwesomeIcons.cloudDownload, "cloudDownload"),
new IconDefinition(FontAwesomeIcons.cloudUpload, "cloudUpload"),
new IconDefinition(FontAwesomeIcons.userMd, "userMd"),
new IconDefinition(FontAwesomeIcons.stethoscope, "stethoscope"),
new IconDefinition(FontAwesomeIcons.suitcase, "suitcase"),
new IconDefinition(FontAwesomeIcons.bellO, "bellO"),
new IconDefinition(FontAwesomeIcons.coffee, "coffee"),
new IconDefinition(FontAwesomeIcons.cutlery, "cutlery"),
new IconDefinition(FontAwesomeIcons.fileTextO, "fileTextO"),
new IconDefinition(FontAwesomeIcons.buildingO, "buildingO"),
new IconDefinition(FontAwesomeIcons.hospitalO, "hospitalO"),
new IconDefinition(FontAwesomeIcons.ambulance, "ambulance"),
new IconDefinition(FontAwesomeIcons.medkit, "medkit"),
new IconDefinition(FontAwesomeIcons.fighterJet, "fighterJet"),
new IconDefinition(FontAwesomeIcons.beer, "beer"),
new IconDefinition(FontAwesomeIcons.hSquare, "hSquare"),
new IconDefinition(FontAwesomeIcons.plusSquare, "plusSquare"),
new IconDefinition(FontAwesomeIcons.angleDoubleLeft, "angleDoubleLeft"),
new IconDefinition(FontAwesomeIcons.angleDoubleRight, "angleDoubleRight"),
new IconDefinition(FontAwesomeIcons.angleDoubleUp, "angleDoubleUp"),
new IconDefinition(FontAwesomeIcons.angleDoubleDown, "angleDoubleDown"),
new IconDefinition(FontAwesomeIcons.angleLeft, "angleLeft"),
new IconDefinition(FontAwesomeIcons.angleRight, "angleRight"),
new IconDefinition(FontAwesomeIcons.angleUp, "angleUp"),
new IconDefinition(FontAwesomeIcons.angleDown, "angleDown"),
new IconDefinition(FontAwesomeIcons.desktop, "desktop"),
new IconDefinition(FontAwesomeIcons.laptop, "laptop"),
new IconDefinition(FontAwesomeIcons.tablet, "tablet"),
new IconDefinition(FontAwesomeIcons.mobilePhone, "mobilePhone"),
new IconDefinition(FontAwesomeIcons.circleO, "circleO"),
new IconDefinition(FontAwesomeIcons.quoteLeft, "quoteLeft"),
new IconDefinition(FontAwesomeIcons.quoteRight, "quoteRight"),
new IconDefinition(FontAwesomeIcons.spinner, "spinner"),
new IconDefinition(FontAwesomeIcons.circle, "circle"),
new IconDefinition(FontAwesomeIcons.mailReply, "mailReply"),
new IconDefinition(FontAwesomeIcons.reply, "reply"),
new IconDefinition(FontAwesomeIcons.githubAlt, "githubAlt"),
new IconDefinition(FontAwesomeIcons.folderO, "folderO"),
new IconDefinition(FontAwesomeIcons.folderOpenO, "folderOpenO"),
new IconDefinition(FontAwesomeIcons.smileO, "smileO"),
new IconDefinition(FontAwesomeIcons.frownO, "frownO"),
new IconDefinition(FontAwesomeIcons.mehO, "mehO"),
new IconDefinition(FontAwesomeIcons.gamepad, "gamepad"),
new IconDefinition(FontAwesomeIcons.keyboardO, "keyboardO"),
new IconDefinition(FontAwesomeIcons.flagO, "flagO"),
new IconDefinition(FontAwesomeIcons.flagCheckered, "flagCheckered"),
new IconDefinition(FontAwesomeIcons.terminal, "terminal"),
new IconDefinition(FontAwesomeIcons.code, "code"),
new IconDefinition(FontAwesomeIcons.mailReplyAll, "mailReplyAll"),
new IconDefinition(FontAwesomeIcons.replyAll, "replyAll"),
new IconDefinition(FontAwesomeIcons.starHalfEmpty, "starHalfEmpty"),
new IconDefinition(FontAwesomeIcons.starHalfFull, "starHalfFull"),
new IconDefinition(FontAwesomeIcons.starHalfO, "starHalfO"),
new IconDefinition(FontAwesomeIcons.locationArrow, "locationArrow"),
new IconDefinition(FontAwesomeIcons.crop, "crop"),
new IconDefinition(FontAwesomeIcons.codeFork, "codeFork"),
new IconDefinition(FontAwesomeIcons.unlink, "unlink"),
new IconDefinition(FontAwesomeIcons.chainBroken, "chainBroken"),
new IconDefinition(FontAwesomeIcons.question, "question"),
new IconDefinition(FontAwesomeIcons.info, "info"),
new IconDefinition(FontAwesomeIcons.exclamation, "exclamation"),
new IconDefinition(FontAwesomeIcons.superscript, "superscript"),
new IconDefinition(FontAwesomeIcons.subscript, "subscript"),
new IconDefinition(FontAwesomeIcons.eraser, "eraser"),
new IconDefinition(FontAwesomeIcons.puzzlePiece, "puzzlePiece"),
new IconDefinition(FontAwesomeIcons.microphone, "microphone"),
new IconDefinition(FontAwesomeIcons.microphoneSlash, "microphoneSlash"),
new IconDefinition(FontAwesomeIcons.shield, "shield"),
new IconDefinition(FontAwesomeIcons.calendarO, "calendarO"),
new IconDefinition(FontAwesomeIcons.fireExtinguisher, "fireExtinguisher"),
new IconDefinition(FontAwesomeIcons.rocket, "rocket"),
new IconDefinition(FontAwesomeIcons.maxcdn, "maxcdn"),
new IconDefinition(FontAwesomeIcons.chevronCircleLeft, "chevronCircleLeft"),
new IconDefinition(FontAwesomeIcons.chevronCircleRight, "chevronCircleRight"),
new IconDefinition(FontAwesomeIcons.chevronCircleUp, "chevronCircleUp"),
new IconDefinition(FontAwesomeIcons.chevronCircleDown, "chevronCircleDown"),
new IconDefinition(FontAwesomeIcons.html5, "html5"),
new IconDefinition(FontAwesomeIcons.css3, "css3"),
new IconDefinition(FontAwesomeIcons.anchor, "anchor"),
new IconDefinition(FontAwesomeIcons.unlockAlt, "unlockAlt"),
new IconDefinition(FontAwesomeIcons.bullseye, "bullseye"),
new IconDefinition(FontAwesomeIcons.ellipsisH, "ellipsisH"),
new IconDefinition(FontAwesomeIcons.ellipsisV, "ellipsisV"),
new IconDefinition(FontAwesomeIcons.rssSquare, "rssSquare"),
new IconDefinition(FontAwesomeIcons.playCircle, "playCircle"),
new IconDefinition(FontAwesomeIcons.ticket, "ticket"),
new IconDefinition(FontAwesomeIcons.minusSquare, "minusSquare"),
new IconDefinition(FontAwesomeIcons.minusSquareO, "minusSquareO"),
new IconDefinition(FontAwesomeIcons.levelUp, "levelUp"),
new IconDefinition(FontAwesomeIcons.levelDown, "levelDown"),
new IconDefinition(FontAwesomeIcons.checkSquare, "checkSquare"),
new IconDefinition(FontAwesomeIcons.pencilSquare, "pencilSquare"),
new IconDefinition(FontAwesomeIcons.externalLinkSquare, "externalLinkSquare"),
new IconDefinition(FontAwesomeIcons.shareSquare, "shareSquare"),
new IconDefinition(FontAwesomeIcons.compass, "compass"),
new IconDefinition(FontAwesomeIcons.toggleDown, "toggleDown"),
new IconDefinition(FontAwesomeIcons.caretSquareODown, "caretSquareODown"),
new IconDefinition(FontAwesomeIcons.toggleUp, "toggleUp"),
new IconDefinition(FontAwesomeIcons.caretSquareOUp, "caretSquareOUp"),
new IconDefinition(FontAwesomeIcons.caretSquareORight, "caretSquareORight"),
new IconDefinition(FontAwesomeIcons.toggleRight, "toggleRight"),
new IconDefinition(FontAwesomeIcons.eur, "eur"),
new IconDefinition(FontAwesomeIcons.gbp, "gbp"),
new IconDefinition(FontAwesomeIcons.dollar, "dollar"),
new IconDefinition(FontAwesomeIcons.usd, "usd"),
new IconDefinition(FontAwesomeIcons.inr, "inr"),
new IconDefinition(FontAwesomeIcons.cny, "cny"),
new IconDefinition(FontAwesomeIcons.rmb, "rmb"),
new IconDefinition(FontAwesomeIcons.yen, "yen"),
new IconDefinition(FontAwesomeIcons.jpy, "jpy"),
new IconDefinition(FontAwesomeIcons.rub, "rub"),
new IconDefinition(FontAwesomeIcons.won, "won"),
new IconDefinition(FontAwesomeIcons.krw, "krw"),
new IconDefinition(FontAwesomeIcons.bitcoin, "bitcoin"),
new IconDefinition(FontAwesomeIcons.btc, "btc"),
new IconDefinition(FontAwesomeIcons.file, "file"),
new IconDefinition(FontAwesomeIcons.fileText, "fileText"),
new IconDefinition(FontAwesomeIcons.sortAlphaAsc, "sortAlphaAsc"),
new IconDefinition(FontAwesomeIcons.sortAlphaDesc, "sortAlphaDesc"),
new IconDefinition(FontAwesomeIcons.sortAmountAsc, "sortAmountAsc"),
new IconDefinition(FontAwesomeIcons.sortAmountDesc, "sortAmountDesc"),
new IconDefinition(FontAwesomeIcons.sortNumericAsc, "sortNumericAsc"),
new IconDefinition(FontAwesomeIcons.sortNumericDesc, "sortNumericDesc"),
new IconDefinition(FontAwesomeIcons.thumbsUp, "thumbsUp"),
new IconDefinition(FontAwesomeIcons.thumbsDown, "thumbsDown"),
new IconDefinition(FontAwesomeIcons.youtubeSquare, "youtubeSquare"),
new IconDefinition(FontAwesomeIcons.youtube, "youtube"),
new IconDefinition(FontAwesomeIcons.xing, "xing"),
new IconDefinition(FontAwesomeIcons.xingSquare, "xingSquare"),
new IconDefinition(FontAwesomeIcons.youtubePlay, "youtubePlay"),
new IconDefinition(FontAwesomeIcons.dropbox, "dropbox"),
new IconDefinition(FontAwesomeIcons.stackOverflow, "stackOverflow"),
new IconDefinition(FontAwesomeIcons.instagram, "instagram"),
new IconDefinition(FontAwesomeIcons.flickr, "flickr"),
new IconDefinition(FontAwesomeIcons.adn, "adn"),
new IconDefinition(FontAwesomeIcons.bitbucket, "bitbucket"),
new IconDefinition(FontAwesomeIcons.bitbucketSquare, "bitbucketSquare"),
new IconDefinition(FontAwesomeIcons.tumblr, "tumblr"),
new IconDefinition(FontAwesomeIcons.tumblrSquare, "tumblrSquare"),
new IconDefinition(FontAwesomeIcons.longArrowDown, "longArrowDown"),
new IconDefinition(FontAwesomeIcons.longArrowUp, "longArrowUp"),
new IconDefinition(FontAwesomeIcons.longArrowLeft, "longArrowLeft"),
new IconDefinition(FontAwesomeIcons.longArrowRight, "longArrowRight"),
new IconDefinition(FontAwesomeIcons.apple, "apple"),
new IconDefinition(FontAwesomeIcons.windows, "windows"),
new IconDefinition(FontAwesomeIcons.android, "android"),
new IconDefinition(FontAwesomeIcons.linux, "linux"),
new IconDefinition(FontAwesomeIcons.dribbble, "dribbble"),
new IconDefinition(FontAwesomeIcons.skype, "skype"),
new IconDefinition(FontAwesomeIcons.foursquare, "foursquare"),
new IconDefinition(FontAwesomeIcons.trello, "trello"),
new IconDefinition(FontAwesomeIcons.female, "female"),
new IconDefinition(FontAwesomeIcons.male, "male"),
new IconDefinition(FontAwesomeIcons.gitTip, "gitTip"),
new IconDefinition(FontAwesomeIcons.gratipay, "gratipay"),
new IconDefinition(FontAwesomeIcons.sunO, "sunO"),
new IconDefinition(FontAwesomeIcons.moonO, "moonO"),
new IconDefinition(FontAwesomeIcons.archive, "archive"),
new IconDefinition(FontAwesomeIcons.bug, "bug"),
new IconDefinition(FontAwesomeIcons.vk, "vk"),
new IconDefinition(FontAwesomeIcons.weibo, "weibo"),
new IconDefinition(FontAwesomeIcons.renren, "renren"),
new IconDefinition(FontAwesomeIcons.pagelines, "pagelines"),
new IconDefinition(FontAwesomeIcons.stackExchange, "stackExchange"),
new IconDefinition(FontAwesomeIcons.arrowCircleORight, "arrowCircleORight"),
new IconDefinition(FontAwesomeIcons.arrowCircleOLeft, "arrowCircleOLeft"),
new IconDefinition(FontAwesomeIcons.toggleLeft, "toggleLeft"),
new IconDefinition(FontAwesomeIcons.caretSquareOLeft, "caretSquareOLeft"),
new IconDefinition(FontAwesomeIcons.dotCircleO, "dotCircleO"),
new IconDefinition(FontAwesomeIcons.wheelchair, "wheelchair"),
new IconDefinition(FontAwesomeIcons.vimeoSquare, "vimeoSquare"),
new IconDefinition(FontAwesomeIcons.tryCurrency, "tryCurrency"),
new IconDefinition(FontAwesomeIcons.turkishLira, "turkishLira"),
new IconDefinition(FontAwesomeIcons.plusSquareO, "plusSquareO"),
new IconDefinition(FontAwesomeIcons.spaceShuttle, "spaceShuttle"),
new IconDefinition(FontAwesomeIcons.slack, "slack"),
new IconDefinition(FontAwesomeIcons.envelopeSquare, "envelopeSquare"),
new IconDefinition(FontAwesomeIcons.wordpress, "wordpress"),
new IconDefinition(FontAwesomeIcons.openid, "openid"),
new IconDefinition(FontAwesomeIcons.bank, "bank"),
new IconDefinition(FontAwesomeIcons.institution, "institution"),
new IconDefinition(FontAwesomeIcons.university, "university"),
new IconDefinition(FontAwesomeIcons.mortarBoard, "mortarBoard"),
new IconDefinition(FontAwesomeIcons.graduationCap, "graduationCap"),
new IconDefinition(FontAwesomeIcons.yahoo, "yahoo"),
new IconDefinition(FontAwesomeIcons.google, "google"),
new IconDefinition(FontAwesomeIcons.reddit, "reddit"),
new IconDefinition(FontAwesomeIcons.redditSquare, "redditSquare"),
new IconDefinition(FontAwesomeIcons.stumbleuponCircle, "stumbleuponCircle"),
new IconDefinition(FontAwesomeIcons.stumbleupon, "stumbleupon"),
new IconDefinition(FontAwesomeIcons.delicious, "delicious"),
new IconDefinition(FontAwesomeIcons.digg, "digg"),
new IconDefinition(FontAwesomeIcons.piedPiperPp, "piedPiperPp"),
new IconDefinition(FontAwesomeIcons.piedPiperAlt, "piedPiperAlt"),
new IconDefinition(FontAwesomeIcons.drupal, "drupal"),
new IconDefinition(FontAwesomeIcons.joomla, "joomla"),
new IconDefinition(FontAwesomeIcons.language, "language"),
new IconDefinition(FontAwesomeIcons.fax, "fax"),
new IconDefinition(FontAwesomeIcons.building, "building"),
new IconDefinition(FontAwesomeIcons.child, "child"),
new IconDefinition(FontAwesomeIcons.paw, "paw"),
new IconDefinition(FontAwesomeIcons.spoon, "spoon"),
new IconDefinition(FontAwesomeIcons.cube, "cube"),
new IconDefinition(FontAwesomeIcons.cubes, "cubes"),
new IconDefinition(FontAwesomeIcons.behance, "behance"),
new IconDefinition(FontAwesomeIcons.behanceSquare, "behanceSquare"),
new IconDefinition(FontAwesomeIcons.steam, "steam"),
new IconDefinition(FontAwesomeIcons.steamSquare, "steamSquare"),
new IconDefinition(FontAwesomeIcons.recycle, "recycle"),
new IconDefinition(FontAwesomeIcons.automobile, "automobile"),
new IconDefinition(FontAwesomeIcons.car, "car"),
new IconDefinition(FontAwesomeIcons.cab, "cab"),
new IconDefinition(FontAwesomeIcons.taxi, "taxi"),
new IconDefinition(FontAwesomeIcons.tree, "tree"),
new IconDefinition(FontAwesomeIcons.spotify, "spotify"),
new IconDefinition(FontAwesomeIcons.deviantart, "deviantart"),
new IconDefinition(FontAwesomeIcons.soundcloud, "soundcloud"),
new IconDefinition(FontAwesomeIcons.database, "database"),
new IconDefinition(FontAwesomeIcons.filePdfO, "filePdfO"),
new IconDefinition(FontAwesomeIcons.fileWordO, "fileWordO"),
new IconDefinition(FontAwesomeIcons.fileExcelO, "fileExcelO"),
new IconDefinition(FontAwesomeIcons.filePowerpointO, "filePowerpointO"),
new IconDefinition(FontAwesomeIcons.filePhotoO, "filePhotoO"),
new IconDefinition(FontAwesomeIcons.filePictureO, "filePictureO"),
new IconDefinition(FontAwesomeIcons.fileImageO, "fileImageO"),
new IconDefinition(FontAwesomeIcons.fileZipO, "fileZipO"),
new IconDefinition(FontAwesomeIcons.fileArchiveO, "fileArchiveO"),
new IconDefinition(FontAwesomeIcons.fileAudioO, "fileAudioO"),
new IconDefinition(FontAwesomeIcons.fileVideoO, "fileVideoO"),
new IconDefinition(FontAwesomeIcons.fileCodeO, "fileCodeO"),
new IconDefinition(FontAwesomeIcons.vine, "vine"),
new IconDefinition(FontAwesomeIcons.codepen, "codepen"),
new IconDefinition(FontAwesomeIcons.jsfiddle, "jsfiddle"),
new IconDefinition(FontAwesomeIcons.lifeSaver, "lifeSaver"),
new IconDefinition(FontAwesomeIcons.support, "support"),
new IconDefinition(FontAwesomeIcons.circleONotch, "circleONotch"),
new IconDefinition(FontAwesomeIcons.resistance, "resistance"),
new IconDefinition(FontAwesomeIcons.rebel, "rebel"),
new IconDefinition(FontAwesomeIcons.empire, "empire"),
new IconDefinition(FontAwesomeIcons.gitSquare, "gitSquare"),
new IconDefinition(FontAwesomeIcons.git, "git"),
new IconDefinition(FontAwesomeIcons.yCombinatorSquare, "yCombinatorSquare"),
new IconDefinition(FontAwesomeIcons.hackerNews, "hackerNews"),
new IconDefinition(FontAwesomeIcons.tencentWeibo, "tencentWeibo"),
new IconDefinition(FontAwesomeIcons.qq, "qq"),
new IconDefinition(FontAwesomeIcons.wechat, "wechat"),
new IconDefinition(FontAwesomeIcons.weixin, "weixin"),
new IconDefinition(FontAwesomeIcons.send, "send"),
new IconDefinition(FontAwesomeIcons.paperPlane, "paperPlane"),
new IconDefinition(FontAwesomeIcons.sendO, "sendO"),
new IconDefinition(FontAwesomeIcons.paperPlaneO, "paperPlaneO"),
new IconDefinition(FontAwesomeIcons.history, "history"),
new IconDefinition(FontAwesomeIcons.circleThin, "circleThin"),
new IconDefinition(FontAwesomeIcons.header, "header"),
new IconDefinition(FontAwesomeIcons.paragraph, "paragraph"),
new IconDefinition(FontAwesomeIcons.sliders, "sliders"),
new IconDefinition(FontAwesomeIcons.shareAlt, "shareAlt"),
new IconDefinition(FontAwesomeIcons.shareAltSquare, "shareAltSquare"),
new IconDefinition(FontAwesomeIcons.bomb, "bomb"),
new IconDefinition(FontAwesomeIcons.soccerBallO, "soccerBallO"),
new IconDefinition(FontAwesomeIcons.futbolO, "futbolO"),
new IconDefinition(FontAwesomeIcons.tty, "tty"),
new IconDefinition(FontAwesomeIcons.binoculars, "binoculars"),
new IconDefinition(FontAwesomeIcons.plug, "plug"),
new IconDefinition(FontAwesomeIcons.slideshare, "slideshare"),
new IconDefinition(FontAwesomeIcons.twitch, "twitch"),
new IconDefinition(FontAwesomeIcons.yelp, "yelp"),
new IconDefinition(FontAwesomeIcons.newspaperO, "newspaperO"),
new IconDefinition(FontAwesomeIcons.wifi, "wifi"),
new IconDefinition(FontAwesomeIcons.calculator, "calculator"),
new IconDefinition(FontAwesomeIcons.paypal, "paypal"),
new IconDefinition(FontAwesomeIcons.googleWallet, "googleWallet"),
new IconDefinition(FontAwesomeIcons.ccVisa, "ccVisa"),
new IconDefinition(FontAwesomeIcons.ccMastercard, "ccMastercard"),
new IconDefinition(FontAwesomeIcons.ccDiscover, "ccDiscover"),
new IconDefinition(FontAwesomeIcons.ccAmex, "ccAmex"),
new IconDefinition(FontAwesomeIcons.ccPaypal, "ccPaypal"),
new IconDefinition(FontAwesomeIcons.ccStripe, "ccStripe"),
new IconDefinition(FontAwesomeIcons.bellSlash, "bellSlash"),
new IconDefinition(FontAwesomeIcons.bellSlashO, "bellSlashO"),
new IconDefinition(FontAwesomeIcons.trash, "trash"),
new IconDefinition(FontAwesomeIcons.copyright, "copyright"),
new IconDefinition(FontAwesomeIcons.at, "at"),
new IconDefinition(FontAwesomeIcons.eyedropper, "eyedropper"),
new IconDefinition(FontAwesomeIcons.paintBrush, "paintBrush"),
new IconDefinition(FontAwesomeIcons.birthdayCake, "birthdayCake"),
new IconDefinition(FontAwesomeIcons.areaChart, "areaChart"),
new IconDefinition(FontAwesomeIcons.pieChart, "pieChart"),
new IconDefinition(FontAwesomeIcons.lineChart, "lineChart"),
new IconDefinition(FontAwesomeIcons.lastfm, "lastfm"),
new IconDefinition(FontAwesomeIcons.lastfmSquare, "lastfmSquare"),
new IconDefinition(FontAwesomeIcons.toggleOff, "toggleOff"),
new IconDefinition(FontAwesomeIcons.toggleOn, "toggleOn"),
new IconDefinition(FontAwesomeIcons.bicycle, "bicycle"),
new IconDefinition(FontAwesomeIcons.bus, "bus"),
new IconDefinition(FontAwesomeIcons.ioxhost, "ioxhost"),
new IconDefinition(FontAwesomeIcons.angellist, "angellist"),
new IconDefinition(FontAwesomeIcons.cc, "cc"),
new IconDefinition(FontAwesomeIcons.shekel, "shekel"),
new IconDefinition(FontAwesomeIcons.ils, "ils"),
new IconDefinition(FontAwesomeIcons.meanpath, "meanpath"),
new IconDefinition(FontAwesomeIcons.buysellads, "buysellads"),
new IconDefinition(FontAwesomeIcons.connectdevelop, "connectdevelop"),
new IconDefinition(FontAwesomeIcons.dashcube, "dashcube"),
new IconDefinition(FontAwesomeIcons.forumbee, "forumbee"),
new IconDefinition(FontAwesomeIcons.leanpub, "leanpub"),
new IconDefinition(FontAwesomeIcons.sellsy, "sellsy"),
new IconDefinition(FontAwesomeIcons.shirtsinbulk, "shirtsinbulk"),
new IconDefinition(FontAwesomeIcons.simplybuilt, "simplybuilt"),
new IconDefinition(FontAwesomeIcons.skyatlas, "skyatlas"),
new IconDefinition(FontAwesomeIcons.cartPlus, "cartPlus"),
new IconDefinition(FontAwesomeIcons.cartArrowDown, "cartArrowDown"),
new IconDefinition(FontAwesomeIcons.diamond, "diamond"),
new IconDefinition(FontAwesomeIcons.ship, "ship"),
new IconDefinition(FontAwesomeIcons.userSecret, "userSecret"),
new IconDefinition(FontAwesomeIcons.motorcycle, "motorcycle"),
new IconDefinition(FontAwesomeIcons.streetView, "streetView"),
new IconDefinition(FontAwesomeIcons.heartbeat, "heartbeat"),
new IconDefinition(FontAwesomeIcons.venus, "venus"),
new IconDefinition(FontAwesomeIcons.mars, "mars"),
new IconDefinition(FontAwesomeIcons.mercury, "mercury"),
new IconDefinition(FontAwesomeIcons.intersex, "intersex"),
new IconDefinition(FontAwesomeIcons.transgender, "transgender"),
new IconDefinition(FontAwesomeIcons.transgenderAlt, "transgenderAlt"),
new IconDefinition(FontAwesomeIcons.venusDouble, "venusDouble"),
new IconDefinition(FontAwesomeIcons.marsDouble, "marsDouble"),
new IconDefinition(FontAwesomeIcons.venusMars, "venusMars"),
new IconDefinition(FontAwesomeIcons.marsStroke, "marsStroke"),
new IconDefinition(FontAwesomeIcons.marsStrokeV, "marsStrokeV"),
new IconDefinition(FontAwesomeIcons.marsStrokeH, "marsStrokeH"),
new IconDefinition(FontAwesomeIcons.neuter, "neuter"),
new IconDefinition(FontAwesomeIcons.genderless, "genderless"),
new IconDefinition(FontAwesomeIcons.facebookOfficial, "facebookOfficial"),
new IconDefinition(FontAwesomeIcons.pinterestP, "pinterestP"),
new IconDefinition(FontAwesomeIcons.whatsapp, "whatsapp"),
new IconDefinition(FontAwesomeIcons.server, "server"),
new IconDefinition(FontAwesomeIcons.userPlus, "userPlus"),
new IconDefinition(FontAwesomeIcons.userTimes, "userTimes"),
new IconDefinition(FontAwesomeIcons.hotel, "hotel"),
new IconDefinition(FontAwesomeIcons.bed, "bed"),
new IconDefinition(FontAwesomeIcons.viacoin, "viacoin"),
new IconDefinition(FontAwesomeIcons.train, "train"),
new IconDefinition(FontAwesomeIcons.subway, "subway"),
new IconDefinition(FontAwesomeIcons.medium, "medium"),
new IconDefinition(FontAwesomeIcons.yCombinator, "yCombinator"),
new IconDefinition(FontAwesomeIcons.optinMonster, "optinMonster"),
new IconDefinition(FontAwesomeIcons.opencart, "opencart"),
new IconDefinition(FontAwesomeIcons.expeditedssl, "expeditedssl"),
new IconDefinition(FontAwesomeIcons.battery, "battery"),
new IconDefinition(FontAwesomeIcons.batteryFull, "batteryFull"),
new IconDefinition(
FontAwesomeIcons.batteryThreeQuarters, "batteryThreeQuarters"),
new IconDefinition(FontAwesomeIcons.batteryHalf, "batteryHalf"),
new IconDefinition(FontAwesomeIcons.batteryQuarter, "batteryQuarter"),
new IconDefinition(FontAwesomeIcons.batteryEmpty, "batteryEmpty"),
new IconDefinition(FontAwesomeIcons.mousePointer, "mousePointer"),
new IconDefinition(FontAwesomeIcons.iCursor, "iCursor"),
new IconDefinition(FontAwesomeIcons.objectGroup, "objectGroup"),
new IconDefinition(FontAwesomeIcons.objectUngroup, "objectUngroup"),
new IconDefinition(FontAwesomeIcons.stickyNote, "stickyNote"),
new IconDefinition(FontAwesomeIcons.stickyNoteO, "stickyNoteO"),
new IconDefinition(FontAwesomeIcons.ccJcb, "ccJcb"),
new IconDefinition(FontAwesomeIcons.ccDinersClub, "ccDinersClub"),
new IconDefinition(FontAwesomeIcons.clone, "clone"),
new IconDefinition(FontAwesomeIcons.balanceScale, "balanceScale"),
new IconDefinition(FontAwesomeIcons.hourglassO, "hourglassO"),
new IconDefinition(FontAwesomeIcons.hourglassFull, "hourglassFull"),
new IconDefinition(FontAwesomeIcons.hourglassHalf, "hourglassHalf"),
new IconDefinition(FontAwesomeIcons.hourglassEmpty, "hourglassEmpty"),
new IconDefinition(FontAwesomeIcons.hourglass, "hourglass"),
new IconDefinition(FontAwesomeIcons.handGrabO, "handGrabO"),
new IconDefinition(FontAwesomeIcons.handRockO, "handRockO"),
new IconDefinition(FontAwesomeIcons.handStopO, "handStopO"),
new IconDefinition(FontAwesomeIcons.handPaperO, "handPaperO"),
new IconDefinition(FontAwesomeIcons.handScissorsO, "handScissorsO"),
new IconDefinition(FontAwesomeIcons.handLizardO, "handLizardO"),
new IconDefinition(FontAwesomeIcons.handSpockO, "handSpockO"),
new IconDefinition(FontAwesomeIcons.handPointerO, "handPointerO"),
new IconDefinition(FontAwesomeIcons.handPeaceO, "handPeaceO"),
new IconDefinition(FontAwesomeIcons.trademark, "trademark"),
new IconDefinition(FontAwesomeIcons.registered, "registered"),
new IconDefinition(FontAwesomeIcons.creativeCommons, "creativeCommons"),
new IconDefinition(FontAwesomeIcons.gg, "gg"),
new IconDefinition(FontAwesomeIcons.ggCircle, "ggCircle"),
new IconDefinition(FontAwesomeIcons.tripadvisor, "tripadvisor"),
new IconDefinition(FontAwesomeIcons.odnoklassniki, "odnoklassniki"),
new IconDefinition(
FontAwesomeIcons.odnoklassnikiSquare, "odnoklassnikiSquare"),
new IconDefinition(FontAwesomeIcons.getPocket, "getPocket"),
new IconDefinition(FontAwesomeIcons.wikipediaW, "wikipediaW"),
new IconDefinition(FontAwesomeIcons.safari, "safari"),
new IconDefinition(FontAwesomeIcons.chrome, "chrome"),
new IconDefinition(FontAwesomeIcons.firefox, "firefox"),
new IconDefinition(FontAwesomeIcons.opera, "opera"),
new IconDefinition(FontAwesomeIcons.internetExplorer, "internetExplorer"),
new IconDefinition(FontAwesomeIcons.television, "television"),
new IconDefinition(FontAwesomeIcons.contao, "contao"),
new IconDefinition(FontAwesomeIcons.fiveHundredPx, "fiveHundredPx"),
new IconDefinition(FontAwesomeIcons.amazon, "amazon"),
new IconDefinition(FontAwesomeIcons.calendarPlusO, "calendarPlusO"),
new IconDefinition(FontAwesomeIcons.calendarMinusO, "calendarMinusO"),
new IconDefinition(FontAwesomeIcons.calendarTimesO, "calendarTimesO"),
new IconDefinition(FontAwesomeIcons.calendarCheckO, "calendarCheckO"),
new IconDefinition(FontAwesomeIcons.industry, "industry"),
new IconDefinition(FontAwesomeIcons.mapPin, "mapPin"),
new IconDefinition(FontAwesomeIcons.mapSigns, "mapSigns"),
new IconDefinition(FontAwesomeIcons.mapO, "mapO"),
new IconDefinition(FontAwesomeIcons.map, "map"),
new IconDefinition(FontAwesomeIcons.commenting, "commenting"),
new IconDefinition(FontAwesomeIcons.commentingO, "commentingO"),
new IconDefinition(FontAwesomeIcons.houzz, "houzz"),
new IconDefinition(FontAwesomeIcons.vimeo, "vimeo"),
new IconDefinition(FontAwesomeIcons.blackTie, "blackTie"),
new IconDefinition(FontAwesomeIcons.fonticons, "fonticons"),
new IconDefinition(FontAwesomeIcons.redditAlien, "redditAlien"),
new IconDefinition(FontAwesomeIcons.edge, "edge"),
new IconDefinition(FontAwesomeIcons.creditCardAlt, "creditCardAlt"),
new IconDefinition(FontAwesomeIcons.codiepie, "codiepie"),
new IconDefinition(FontAwesomeIcons.modx, "modx"),
new IconDefinition(FontAwesomeIcons.fortAwesome, "fortAwesome"),
new IconDefinition(FontAwesomeIcons.usb, "usb"),
new IconDefinition(FontAwesomeIcons.productHunt, "productHunt"),
new IconDefinition(FontAwesomeIcons.mixcloud, "mixcloud"),
new IconDefinition(FontAwesomeIcons.scribd, "scribd"),
new IconDefinition(FontAwesomeIcons.pauseCircle, "pauseCircle"),
new IconDefinition(FontAwesomeIcons.pauseCircleO, "pauseCircleO"),
new IconDefinition(FontAwesomeIcons.stopCircle, "stopCircle"),
new IconDefinition(FontAwesomeIcons.stopCircleO, "stopCircleO"),
new IconDefinition(FontAwesomeIcons.shoppingBag, "shoppingBag"),
new IconDefinition(FontAwesomeIcons.shoppingBasket, "shoppingBasket"),
new IconDefinition(FontAwesomeIcons.hashtag, "hashtag"),
new IconDefinition(FontAwesomeIcons.bluetooth, "bluetooth"),
new IconDefinition(FontAwesomeIcons.bluetoothB, "bluetoothB"),
new IconDefinition(FontAwesomeIcons.percent, "percent"),
new IconDefinition(FontAwesomeIcons.gitlab, "gitlab"),
new IconDefinition(FontAwesomeIcons.wpbeginner, "wpbeginner"),
new IconDefinition(FontAwesomeIcons.wpforms, "wpforms"),
new IconDefinition(FontAwesomeIcons.envira, "envira"),
new IconDefinition(FontAwesomeIcons.universalAccess, "universalAccess"),
new IconDefinition(FontAwesomeIcons.wheelchairAlt, "wheelchairAlt"),
new IconDefinition(FontAwesomeIcons.questionCircleO, "questionCircleO"),
new IconDefinition(FontAwesomeIcons.blind, "blind"),
new IconDefinition(FontAwesomeIcons.audioDescription, "audioDescription"),
new IconDefinition(FontAwesomeIcons.volumeControlPhone, "volumeControlPhone"),
new IconDefinition(FontAwesomeIcons.braille, "braille"),
new IconDefinition(
FontAwesomeIcons.assistiveListeningSystems, "assistiveListeningSystems"),
new IconDefinition(FontAwesomeIcons.americanSignLanguageInterpreting,
"americanSignLanguageInterpreting"),
new IconDefinition(FontAwesomeIcons.deaf, "deaf"),
new IconDefinition(FontAwesomeIcons.glide, "glide"),
new IconDefinition(FontAwesomeIcons.glideG, "glideG"),
new IconDefinition(FontAwesomeIcons.signLanguage, "signLanguage"),
new IconDefinition(FontAwesomeIcons.lowVision, "lowVision"),
new IconDefinition(FontAwesomeIcons.viadeo, "viadeo"),
new IconDefinition(FontAwesomeIcons.viadeoSquare, "viadeoSquare"),
new IconDefinition(FontAwesomeIcons.snapchat, "snapchat"),
new IconDefinition(FontAwesomeIcons.snapchatGhost, "snapchatGhost"),
new IconDefinition(FontAwesomeIcons.snapchatSquare, "snapchatSquare"),
new IconDefinition(FontAwesomeIcons.piedPiper, "piedPiper"),
new IconDefinition(FontAwesomeIcons.firstOrder, "firstOrder"),
new IconDefinition(FontAwesomeIcons.yoast, "yoast"),
new IconDefinition(FontAwesomeIcons.themeisle, "themeisle"),
new IconDefinition(FontAwesomeIcons.googlePlusOfficial, "googlePlusOfficial"),
new IconDefinition(FontAwesomeIcons.fontAwesome, "fontAwesome"),
new IconDefinition(FontAwesomeIcons.handshakeO, "handshakeO"),
new IconDefinition(FontAwesomeIcons.envelopeOpen, "envelopeOpen"),
new IconDefinition(FontAwesomeIcons.envelopeOpenO, "envelopeOpenO"),
new IconDefinition(FontAwesomeIcons.linode, "linode"),
new IconDefinition(FontAwesomeIcons.addressBook, "addressBook"),
new IconDefinition(FontAwesomeIcons.addressBookO, "addressBookO"),
new IconDefinition(FontAwesomeIcons.vCard, "vCard"),
new IconDefinition(FontAwesomeIcons.addressCard, "addressCard"),
new IconDefinition(FontAwesomeIcons.vCardO, "vCardO"),
new IconDefinition(FontAwesomeIcons.addressCardO, "addressCardO"),
new IconDefinition(FontAwesomeIcons.userCircle, "userCircle"),
new IconDefinition(FontAwesomeIcons.userCircleO, "userCircleO"),
new IconDefinition(FontAwesomeIcons.userO, "userO"),
new IconDefinition(FontAwesomeIcons.idBadge, "idBadge"),
new IconDefinition(FontAwesomeIcons.driversLicense, "driversLicense"),
new IconDefinition(FontAwesomeIcons.idCard, "idCard"),
new IconDefinition(FontAwesomeIcons.driversLicenseO, "driversLicenseO"),
new IconDefinition(FontAwesomeIcons.idCardO, "idCardO"),
new IconDefinition(FontAwesomeIcons.quora, "quora"),
new IconDefinition(FontAwesomeIcons.freeCodeCamp, "freeCodeCamp"),
new IconDefinition(FontAwesomeIcons.telegram, "telegram"),
new IconDefinition(FontAwesomeIcons.thermometer, "thermometer"),
new IconDefinition(FontAwesomeIcons.thermometerFull, "thermometerFull"),
new IconDefinition(
FontAwesomeIcons.thermometerThreeQuarters, "thermometerThreeQuarters"),
new IconDefinition(FontAwesomeIcons.thermometerHalf, "thermometerHalf"),
new IconDefinition(FontAwesomeIcons.thermometerQuarter, "thermometerQuarter"),
new IconDefinition(FontAwesomeIcons.thermometerEmpty, "thermometerEmpty"),
new IconDefinition(FontAwesomeIcons.shower, "shower"),
new IconDefinition(FontAwesomeIcons.bathtub, "bathtub"),
new IconDefinition(FontAwesomeIcons.podcast, "podcast"),
new IconDefinition(FontAwesomeIcons.windowMaximize, "windowMaximize"),
new IconDefinition(FontAwesomeIcons.windowMinimize, "windowMinimize"),
new IconDefinition(FontAwesomeIcons.windowRestore, "windowRestore"),
new IconDefinition(FontAwesomeIcons.timesRectangle, "timesRectangle"),
new IconDefinition(FontAwesomeIcons.windowClose, "windowClose"),
new IconDefinition(FontAwesomeIcons.timesRectangleO, "timesRectangleO"),
new IconDefinition(FontAwesomeIcons.windowCloseO, "windowCloseO"),
new IconDefinition(FontAwesomeIcons.bandcamp, "bandcamp"),
new IconDefinition(FontAwesomeIcons.grav, "grav"),
new IconDefinition(FontAwesomeIcons.etsy, "etsy"),
new IconDefinition(FontAwesomeIcons.imdb, "imdb"),
new IconDefinition(FontAwesomeIcons.ravelry, "ravelry"),
new IconDefinition(FontAwesomeIcons.eercast, "eercast"),
new IconDefinition(FontAwesomeIcons.microchip, "microchip"),
new IconDefinition(FontAwesomeIcons.snowflakeO, "snowflakeO"),
new IconDefinition(FontAwesomeIcons.superpowers, "superpowers"),
new IconDefinition(FontAwesomeIcons.wpexplorer, "wpexplorer"),
new IconDefinition(FontAwesomeIcons.meetup, "meetup"),
];
class IconDefinition implements Comparable {
final IconData iconData;
final String title;
IconDefinition(this.iconData, this.title);
@override
String toString() => 'IconDefinition{iconData: $iconData, title: $title}';
@override
bool operator ==(Object other) =>
identical(this, other) ||
other is IconDefinition &&
runtimeType == other.runtimeType &&
iconData == other.iconData &&
title == other.title;
@override
int get hashCode => iconData.hashCode ^ title.hashCode;
@override
int compareTo(other) => title.compareTo(other.title);
}
name: font_awesome_flutter_example
description: The Font Awesome Flutter Gallery
dependencies:
flutter:
sdk: flutter
font_awesome_flutter:
path: ../
flutter:
uses-material-design: true
# In order to use font_awesome_flutter in your own app, be sure to
# include the following font declaration in your pubspec.yaml
fonts:
- family: FontAwesome # Do not change!
fonts:
- asset: packages/font_awesome_flutter/fonts/fontawesome-webfont.woff
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<module type="FLUTTER_MODULE_TYPE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/.pub" />
<excludeFolder url="file://$MODULE_DIR$/build" />
<excludeFolder url="file://$MODULE_DIR$/example/.idea/libraries/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/.idea/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/.pub" />
<excludeFolder url="file://$MODULE_DIR$/example/android/.gradle/3.2/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/android/.gradle/3.2/taskArtifacts/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/android/.gradle/3.2/tasks/_app_compileDebugJavaWithJavac/localClassSetAnalysis/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/android/.gradle/3.2/tasks/_app_compileDebugJavaWithJavac/localJarClasspathSnapshot/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/android/.gradle/3.2/tasks/_app_compileDebugJavaWithJavac/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/android/.gradle/3.2/tasks/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/android/.gradle/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/android/app/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/android/app/src/main/java/com/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/android/app/src/main/java/com/yourcompany/example/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/android/app/src/main/java/com/yourcompany/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/android/app/src/main/java/io/flutter/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/android/app/src/main/java/io/flutter/plugins/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/android/app/src/main/java/io/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/android/app/src/main/java/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/android/app/src/main/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/android/app/src/main/res/mipmap-hdpi/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/android/app/src/main/res/mipmap-mdpi/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/android/app/src/main/res/mipmap-xhdpi/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/android/app/src/main/res/mipmap-xxhdpi/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/android/app/src/main/res/mipmap-xxxhdpi/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/android/app/src/main/res/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/android/app/src/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/android/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/build" />
<excludeFolder url="file://$MODULE_DIR$/example/ios/Flutter/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/ios/Runner.xcodeproj/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/ios/Runner.xcodeproj/project.xcworkspace/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/ios/Runner.xcodeproj/xcshareddata/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/ios/Runner.xcworkspace/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/ios/Runner/Assets.xcassets/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/ios/Runner/Base.lproj/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/ios/Runner/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/ios/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/lib/packages" />
<excludeFolder url="file://$MODULE_DIR$/example/packages" />
<excludeFolder url="file://$MODULE_DIR$/packages" />
</content>
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="Dart SDK" level="project" />
<orderEntry type="library" name="Dart Packages" level="project" />
</component>
</module>
\ No newline at end of file
import 'package:flutter/material.dart';
class FontAwesomeIcons {
static const IconData glass = const _IconData(0xf000);
static const IconData music = const _IconData(0xf001);
static const IconData search = const _IconData(0xf002);
static const IconData envelopeO = const _IconData(0xf003);
static const IconData heart = const _IconData(0xf004);
static const IconData star = const _IconData(0xf005);
static const IconData starO = const _IconData(0xf006);
static const IconData user = const _IconData(0xf007);
static const IconData film = const _IconData(0xf008);
static const IconData thLarge = const _IconData(0xf009);
static const IconData th = const _IconData(0xf00a);
static const IconData thList = const _IconData(0xf00b);
static const IconData check = const _IconData(0xf00c);
static const IconData remove = const _IconData(0xf00d);
static const IconData close = const _IconData(0xf00d);
static const IconData times = const _IconData(0xf00d);
static const IconData searchPlus = const _IconData(0xf00e);
static const IconData searchMinus = const _IconData(0xf010);
static const IconData powerOff = const _IconData(0xf011);
static const IconData signal = const _IconData(0xf012);
static const IconData gear = const _IconData(0xf013);
static const IconData cog = const _IconData(0xf013);
static const IconData trashO = const _IconData(0xf014);
static const IconData home = const _IconData(0xf015);
static const IconData fileO = const _IconData(0xf016);
static const IconData clockO = const _IconData(0xf017);
static const IconData road = const _IconData(0xf018);
static const IconData download = const _IconData(0xf019);
static const IconData arrowCircleODown = const _IconData(0xf01a);
static const IconData arrowCircleOUp = const _IconData(0xf01b);
static const IconData inbox = const _IconData(0xf01c);
static const IconData playCircleO = const _IconData(0xf01d);
static const IconData rotateRight = const _IconData(0xf01e);
static const IconData repeat = const _IconData(0xf01e);
static const IconData refresh = const _IconData(0xf021);
static const IconData listAlt = const _IconData(0xf022);
static const IconData lock = const _IconData(0xf023);
static const IconData flag = const _IconData(0xf024);
static const IconData headphones = const _IconData(0xf025);
static const IconData volumeOff = const _IconData(0xf026);
static const IconData volumeDown = const _IconData(0xf027);
static const IconData volumeUp = const _IconData(0xf028);
static const IconData qrcode = const _IconData(0xf029);
static const IconData barcode = const _IconData(0xf02a);
static const IconData tag = const _IconData(0xf02b);
static const IconData tags = const _IconData(0xf02c);
static const IconData book = const _IconData(0xf02d);
static const IconData bookmark = const _IconData(0xf02e);
static const IconData print = const _IconData(0xf02f);
static const IconData camera = const _IconData(0xf030);
static const IconData font = const _IconData(0xf031);
static const IconData bold = const _IconData(0xf032);
static const IconData italic = const _IconData(0xf033);
static const IconData textHeight = const _IconData(0xf034);
static const IconData textWidth = const _IconData(0xf035);
static const IconData alignLeft = const _IconData(0xf036);
static const IconData alignCenter = const _IconData(0xf037);
static const IconData alignRight = const _IconData(0xf038);
static const IconData alignJustify = const _IconData(0xf039);
static const IconData list = const _IconData(0xf03a);
static const IconData dedent = const _IconData(0xf03b);
static const IconData outdent = const _IconData(0xf03b);
static const IconData indent = const _IconData(0xf03c);
static const IconData videoCamera = const _IconData(0xf03d);
static const IconData photo = const _IconData(0xf03e);
static const IconData image = const _IconData(0xf03e);
static const IconData pictureO = const _IconData(0xf03e);
static const IconData pencil = const _IconData(0xf040);
static const IconData mapMarker = const _IconData(0xf041);
static const IconData adjust = const _IconData(0xf042);
static const IconData tint = const _IconData(0xf043);
static const IconData edit = const _IconData(0xf044);
static const IconData pencilSquareO = const _IconData(0xf044);
static const IconData shareSquareO = const _IconData(0xf045);
static const IconData checkSquareO = const _IconData(0xf046);
static const IconData arrows = const _IconData(0xf047);
static const IconData stepBackward = const _IconData(0xf048);
static const IconData fastBackward = const _IconData(0xf049);
static const IconData backward = const _IconData(0xf04a);
static const IconData play = const _IconData(0xf04b);
static const IconData pause = const _IconData(0xf04c);
static const IconData stop = const _IconData(0xf04d);
static const IconData forward = const _IconData(0xf04e);
static const IconData fastForward = const _IconData(0xf050);
static const IconData stepForward = const _IconData(0xf051);
static const IconData eject = const _IconData(0xf052);
static const IconData chevronLeft = const _IconData(0xf053);
static const IconData chevronRight = const _IconData(0xf054);
static const IconData plusCircle = const _IconData(0xf055);
static const IconData minusCircle = const _IconData(0xf056);
static const IconData timesCircle = const _IconData(0xf057);
static const IconData checkCircle = const _IconData(0xf058);
static const IconData questionCircle = const _IconData(0xf059);
static const IconData infoCircle = const _IconData(0xf05a);
static const IconData crosshairs = const _IconData(0xf05b);
static const IconData timesCircleO = const _IconData(0xf05c);
static const IconData checkCircleO = const _IconData(0xf05d);
static const IconData ban = const _IconData(0xf05e);
static const IconData arrowLeft = const _IconData(0xf060);
static const IconData arrowRight = const _IconData(0xf061);
static const IconData arrowUp = const _IconData(0xf062);
static const IconData arrowDown = const _IconData(0xf063);
static const IconData mailForward = const _IconData(0xf064);
static const IconData share = const _IconData(0xf064);
static const IconData expand = const _IconData(0xf065);
static const IconData compress = const _IconData(0xf066);
static const IconData plus = const _IconData(0xf067);
static const IconData minus = const _IconData(0xf068);
static const IconData asterisk = const _IconData(0xf069);
static const IconData exclamationCircle = const _IconData(0xf06a);
static const IconData gift = const _IconData(0xf06b);
static const IconData leaf = const _IconData(0xf06c);
static const IconData fire = const _IconData(0xf06d);
static const IconData eye = const _IconData(0xf06e);
static const IconData eyeSlash = const _IconData(0xf070);
static const IconData warning = const _IconData(0xf071);
static const IconData exclamationTriangle = const _IconData(0xf071);
static const IconData plane = const _IconData(0xf072);
static const IconData calendar = const _IconData(0xf073);
static const IconData random = const _IconData(0xf074);
static const IconData comment = const _IconData(0xf075);
static const IconData magnet = const _IconData(0xf076);
static const IconData chevronUp = const _IconData(0xf077);
static const IconData chevronDown = const _IconData(0xf078);
static const IconData retweet = const _IconData(0xf079);
static const IconData shoppingCart = const _IconData(0xf07a);
static const IconData folder = const _IconData(0xf07b);
static const IconData folderOpen = const _IconData(0xf07c);
static const IconData arrowsV = const _IconData(0xf07d);
static const IconData arrowsH = const _IconData(0xf07e);
static const IconData barChartO = const _IconData(0xf080);
static const IconData barChart = const _IconData(0xf080);
static const IconData twitterSquare = const _IconData(0xf081);
static const IconData facebookSquare = const _IconData(0xf082);
static const IconData cameraRetro = const _IconData(0xf083);
static const IconData key = const _IconData(0xf084);
static const IconData gears = const _IconData(0xf085);
static const IconData cogs = const _IconData(0xf085);
static const IconData comments = const _IconData(0xf086);
static const IconData thumbsOUp = const _IconData(0xf087);
static const IconData thumbsODown = const _IconData(0xf088);
static const IconData starHalf = const _IconData(0xf089);
static const IconData heartO = const _IconData(0xf08a);
static const IconData signOut = const _IconData(0xf08b);
static const IconData linkedinSquare = const _IconData(0xf08c);
static const IconData thumbTack = const _IconData(0xf08d);
static const IconData externalLink = const _IconData(0xf08e);
static const IconData signIn = const _IconData(0xf090);
static const IconData trophy = const _IconData(0xf091);
static const IconData githubSquare = const _IconData(0xf092);
static const IconData upload = const _IconData(0xf093);
static const IconData lemonO = const _IconData(0xf094);
static const IconData phone = const _IconData(0xf095);
static const IconData squareO = const _IconData(0xf096);
static const IconData bookmarkO = const _IconData(0xf097);
static const IconData phoneSquare = const _IconData(0xf098);
static const IconData twitter = const _IconData(0xf099);
static const IconData facebook = const _IconData(0xf09a);
static const IconData github = const _IconData(0xf09b);
static const IconData unlock = const _IconData(0xf09c);
static const IconData creditCard = const _IconData(0xf09d);
static const IconData feed = const _IconData(0xf09e);
static const IconData rss = const _IconData(0xf09e);
static const IconData hddO = const _IconData(0xf0a0);
static const IconData bullhorn = const _IconData(0xf0a1);
static const IconData bell = const _IconData(0xf0f3);
static const IconData certificate = const _IconData(0xf0a3);
static const IconData handORight = const _IconData(0xf0a4);
static const IconData handOLeft = const _IconData(0xf0a5);
static const IconData handOUp = const _IconData(0xf0a6);
static const IconData handODown = const _IconData(0xf0a7);
static const IconData arrowCircleLeft = const _IconData(0xf0a8);
static const IconData arrowCircleRight = const _IconData(0xf0a9);
static const IconData arrowCircleUp = const _IconData(0xf0aa);
static const IconData arrowCircleDown = const _IconData(0xf0ab);
static const IconData globe = const _IconData(0xf0ac);
static const IconData wrench = const _IconData(0xf0ad);
static const IconData tasks = const _IconData(0xf0ae);
static const IconData filter = const _IconData(0xf0b0);
static const IconData briefcase = const _IconData(0xf0b1);
static const IconData arrowsAlt = const _IconData(0xf0b2);
static const IconData group = const _IconData(0xf0c0);
static const IconData users = const _IconData(0xf0c0);
static const IconData chain = const _IconData(0xf0c1);
static const IconData link = const _IconData(0xf0c1);
static const IconData cloud = const _IconData(0xf0c2);
static const IconData flask = const _IconData(0xf0c3);
static const IconData cut = const _IconData(0xf0c4);
static const IconData scissors = const _IconData(0xf0c4);
static const IconData copy = const _IconData(0xf0c5);
static const IconData filesO = const _IconData(0xf0c5);
static const IconData paperclip = const _IconData(0xf0c6);
static const IconData save = const _IconData(0xf0c7);
static const IconData floppyO = const _IconData(0xf0c7);
static const IconData square = const _IconData(0xf0c8);
static const IconData navIcon = const _IconData(0xf0c9);
static const IconData reorder = const _IconData(0xf0c9);
static const IconData bars = const _IconData(0xf0c9);
static const IconData listUl = const _IconData(0xf0ca);
static const IconData listOl = const _IconData(0xf0cb);
static const IconData strikethrough = const _IconData(0xf0cc);
static const IconData underline = const _IconData(0xf0cd);
static const IconData table = const _IconData(0xf0ce);
static const IconData magic = const _IconData(0xf0d0);
static const IconData truck = const _IconData(0xf0d1);
static const IconData pinterest = const _IconData(0xf0d2);
static const IconData pinterestSquare = const _IconData(0xf0d3);
static const IconData googlePlusSquare = const _IconData(0xf0d4);
static const IconData googlePlus = const _IconData(0xf0d5);
static const IconData money = const _IconData(0xf0d6);
static const IconData caretDown = const _IconData(0xf0d7);
static const IconData caretUp = const _IconData(0xf0d8);
static const IconData caretLeft = const _IconData(0xf0d9);
static const IconData caretRight = const _IconData(0xf0da);
static const IconData columns = const _IconData(0xf0db);
static const IconData unsorted = const _IconData(0xf0dc);
static const IconData sort = const _IconData(0xf0dc);
static const IconData sortDown = const _IconData(0xf0dd);
static const IconData sortDesc = const _IconData(0xf0dd);
static const IconData sortUp = const _IconData(0xf0de);
static const IconData sortAsc = const _IconData(0xf0de);
static const IconData envelope = const _IconData(0xf0e0);
static const IconData linkedin = const _IconData(0xf0e1);
static const IconData rotateLeft = const _IconData(0xf0e2);
static const IconData undo = const _IconData(0xf0e2);
static const IconData legal = const _IconData(0xf0e3);
static const IconData gavel = const _IconData(0xf0e3);
static const IconData dashboard = const _IconData(0xf0e4);
static const IconData tachometer = const _IconData(0xf0e4);
static const IconData commentO = const _IconData(0xf0e5);
static const IconData commentsO = const _IconData(0xf0e6);
static const IconData flash = const _IconData(0xf0e7);
static const IconData bolt = const _IconData(0xf0e7);
static const IconData sitemap = const _IconData(0xf0e8);
static const IconData umbrella = const _IconData(0xf0e9);
static const IconData paste = const _IconData(0xf0ea);
static const IconData clipboard = const _IconData(0xf0ea);
static const IconData lightbulbO = const _IconData(0xf0eb);
static const IconData exchange = const _IconData(0xf0ec);
static const IconData cloudDownload = const _IconData(0xf0ed);
static const IconData cloudUpload = const _IconData(0xf0ee);
static const IconData userMd = const _IconData(0xf0f0);
static const IconData stethoscope = const _IconData(0xf0f1);
static const IconData suitcase = const _IconData(0xf0f2);
static const IconData bellO = const _IconData(0xf0a2);
static const IconData coffee = const _IconData(0xf0f4);
static const IconData cutlery = const _IconData(0xf0f5);
static const IconData fileTextO = const _IconData(0xf0f6);
static const IconData buildingO = const _IconData(0xf0f7);
static const IconData hospitalO = const _IconData(0xf0f8);
static const IconData ambulance = const _IconData(0xf0f9);
static const IconData medkit = const _IconData(0xf0fa);
static const IconData fighterJet = const _IconData(0xf0fb);
static const IconData beer = const _IconData(0xf0fc);
static const IconData hSquare = const _IconData(0xf0fd);
static const IconData plusSquare = const _IconData(0xf0fe);
static const IconData angleDoubleLeft = const _IconData(0xf100);
static const IconData angleDoubleRight = const _IconData(0xf101);
static const IconData angleDoubleUp = const _IconData(0xf102);
static const IconData angleDoubleDown = const _IconData(0xf103);
static const IconData angleLeft = const _IconData(0xf104);
static const IconData angleRight = const _IconData(0xf105);
static const IconData angleUp = const _IconData(0xf106);
static const IconData angleDown = const _IconData(0xf107);
static const IconData desktop = const _IconData(0xf108);
static const IconData laptop = const _IconData(0xf109);
static const IconData tablet = const _IconData(0xf10a);
static const IconData mobilePhone = const _IconData(0xf10b);
static const IconData circleO = const _IconData(0xf10c);
static const IconData quoteLeft = const _IconData(0xf10d);
static const IconData quoteRight = const _IconData(0xf10e);
static const IconData spinner = const _IconData(0xf110);
static const IconData circle = const _IconData(0xf111);
static const IconData mailReply = const _IconData(0xf112);
static const IconData reply = const _IconData(0xf112);
static const IconData githubAlt = const _IconData(0xf113);
static const IconData folderO = const _IconData(0xf114);
static const IconData folderOpenO = const _IconData(0xf115);
static const IconData smileO = const _IconData(0xf118);
static const IconData frownO = const _IconData(0xf119);
static const IconData mehO = const _IconData(0xf11a);
static const IconData gamepad = const _IconData(0xf11b);
static const IconData keyboardO = const _IconData(0xf11c);
static const IconData flagO = const _IconData(0xf11d);
static const IconData flagCheckered = const _IconData(0xf11e);
static const IconData terminal = const _IconData(0xf120);
static const IconData code = const _IconData(0xf121);
static const IconData mailReplyAll = const _IconData(0xf122);
static const IconData replyAll = const _IconData(0xf122);
static const IconData starHalfEmpty = const _IconData(0xf123);
static const IconData starHalfFull = const _IconData(0xf123);
static const IconData starHalfO = const _IconData(0xf123);
static const IconData locationArrow = const _IconData(0xf124);
static const IconData crop = const _IconData(0xf125);
static const IconData codeFork = const _IconData(0xf126);
static const IconData unlink = const _IconData(0xf127);
static const IconData chainBroken = const _IconData(0xf127);
static const IconData question = const _IconData(0xf128);
static const IconData info = const _IconData(0xf129);
static const IconData exclamation = const _IconData(0xf12a);
static const IconData superscript = const _IconData(0xf12b);
static const IconData subscript = const _IconData(0xf12c);
static const IconData eraser = const _IconData(0xf12d);
static const IconData puzzlePiece = const _IconData(0xf12e);
static const IconData microphone = const _IconData(0xf130);
static const IconData microphoneSlash = const _IconData(0xf131);
static const IconData shield = const _IconData(0xf132);
static const IconData calendarO = const _IconData(0xf133);
static const IconData fireExtinguisher = const _IconData(0xf134);
static const IconData rocket = const _IconData(0xf135);
static const IconData maxcdn = const _IconData(0xf136);
static const IconData chevronCircleLeft = const _IconData(0xf137);
static const IconData chevronCircleRight = const _IconData(0xf138);
static const IconData chevronCircleUp = const _IconData(0xf139);
static const IconData chevronCircleDown = const _IconData(0xf13a);
static const IconData html5 = const _IconData(0xf13b);
static const IconData css3 = const _IconData(0xf13c);
static const IconData anchor = const _IconData(0xf13d);
static const IconData unlockAlt = const _IconData(0xf13e);
static const IconData bullseye = const _IconData(0xf140);
static const IconData ellipsisH = const _IconData(0xf141);
static const IconData ellipsisV = const _IconData(0xf142);
static const IconData rssSquare = const _IconData(0xf143);
static const IconData playCircle = const _IconData(0xf144);
static const IconData ticket = const _IconData(0xf145);
static const IconData minusSquare = const _IconData(0xf146);
static const IconData minusSquareO = const _IconData(0xf147);
static const IconData levelUp = const _IconData(0xf148);
static const IconData levelDown = const _IconData(0xf149);
static const IconData checkSquare = const _IconData(0xf14a);
static const IconData pencilSquare = const _IconData(0xf14b);
static const IconData externalLinkSquare = const _IconData(0xf14c);
static const IconData shareSquare = const _IconData(0xf14d);
static const IconData compass = const _IconData(0xf14e);
static const IconData toggleDown = const _IconData(0xf150);
static const IconData caretSquareODown = const _IconData(0xf150);
static const IconData toggleUp = const _IconData(0xf151);
static const IconData caretSquareOUp = const _IconData(0xf151);
static const IconData caretSquareORight = const _IconData(0xf152);
static const IconData toggleRight = const _IconData(0xf152);
static const IconData eur = const _IconData(0xf153);
static const IconData gbp = const _IconData(0xf154);
static const IconData dollar = const _IconData(0xf155);
static const IconData usd = const _IconData(0xf155);
static const IconData inr = const _IconData(0xf156);
static const IconData cny = const _IconData(0xf157);
static const IconData rmb = const _IconData(0xf157);
static const IconData yen = const _IconData(0xf157);
static const IconData jpy = const _IconData(0xf157);
static const IconData rub = const _IconData(0xf158);
static const IconData won = const _IconData(0xf159);
static const IconData krw = const _IconData(0xf159);
static const IconData bitcoin = const _IconData(0xf15a);
static const IconData btc = const _IconData(0xf15a);
static const IconData file = const _IconData(0xf15b);
static const IconData fileText = const _IconData(0xf15c);
static const IconData sortAlphaAsc = const _IconData(0xf15d);
static const IconData sortAlphaDesc = const _IconData(0xf15e);
static const IconData sortAmountAsc = const _IconData(0xf160);
static const IconData sortAmountDesc = const _IconData(0xf161);
static const IconData sortNumericAsc = const _IconData(0xf162);
static const IconData sortNumericDesc = const _IconData(0xf163);
static const IconData thumbsUp = const _IconData(0xf164);
static const IconData thumbsDown = const _IconData(0xf165);
static const IconData youtubeSquare = const _IconData(0xf166);
static const IconData youtube = const _IconData(0xf167);
static const IconData xing = const _IconData(0xf168);
static const IconData xingSquare = const _IconData(0xf169);
static const IconData youtubePlay = const _IconData(0xf16a);
static const IconData dropbox = const _IconData(0xf16b);
static const IconData stackOverflow = const _IconData(0xf16c);
static const IconData instagram = const _IconData(0xf16d);
static const IconData flickr = const _IconData(0xf16e);
static const IconData adn = const _IconData(0xf170);
static const IconData bitbucket = const _IconData(0xf171);
static const IconData bitbucketSquare = const _IconData(0xf172);
static const IconData tumblr = const _IconData(0xf173);
static const IconData tumblrSquare = const _IconData(0xf174);
static const IconData longArrowDown = const _IconData(0xf175);
static const IconData longArrowUp = const _IconData(0xf176);
static const IconData longArrowLeft = const _IconData(0xf177);
static const IconData longArrowRight = const _IconData(0xf178);
static const IconData apple = const _IconData(0xf179);
static const IconData windows = const _IconData(0xf17a);
static const IconData android = const _IconData(0xf17b);
static const IconData linux = const _IconData(0xf17c);
static const IconData dribbble = const _IconData(0xf17d);
static const IconData skype = const _IconData(0xf17e);
static const IconData foursquare = const _IconData(0xf180);
static const IconData trello = const _IconData(0xf181);
static const IconData female = const _IconData(0xf182);
static const IconData male = const _IconData(0xf183);
static const IconData gitTip = const _IconData(0xf184);
static const IconData gratipay = const _IconData(0xf184);
static const IconData sunO = const _IconData(0xf185);
static const IconData moonO = const _IconData(0xf186);
static const IconData archive = const _IconData(0xf187);
static const IconData bug = const _IconData(0xf188);
static const IconData vk = const _IconData(0xf189);
static const IconData weibo = const _IconData(0xf18a);
static const IconData renren = const _IconData(0xf18b);
static const IconData pagelines = const _IconData(0xf18c);
static const IconData stackExchange = const _IconData(0xf18d);
static const IconData arrowCircleORight = const _IconData(0xf18e);
static const IconData arrowCircleOLeft = const _IconData(0xf190);
static const IconData toggleLeft = const _IconData(0xf191);
static const IconData caretSquareOLeft = const _IconData(0xf191);
static const IconData dotCircleO = const _IconData(0xf192);
static const IconData wheelchair = const _IconData(0xf193);
static const IconData vimeoSquare = const _IconData(0xf194);
static const IconData tryCurrency = const _IconData(0xf195);
static const IconData turkishLira = const _IconData(0xf195);
static const IconData plusSquareO = const _IconData(0xf196);
static const IconData spaceShuttle = const _IconData(0xf197);
static const IconData slack = const _IconData(0xf198);
static const IconData envelopeSquare = const _IconData(0xf199);
static const IconData wordpress = const _IconData(0xf19a);
static const IconData openid = const _IconData(0xf19b);
static const IconData bank = const _IconData(0xf19c);
static const IconData institution = const _IconData(0xf19c);
static const IconData university = const _IconData(0xf19c);
static const IconData mortarBoard = const _IconData(0xf19d);
static const IconData graduationCap = const _IconData(0xf19d);
static const IconData yahoo = const _IconData(0xf19e);
static const IconData google = const _IconData(0xf1a0);
static const IconData reddit = const _IconData(0xf1a1);
static const IconData redditSquare = const _IconData(0xf1a2);
static const IconData stumbleuponCircle = const _IconData(0xf1a3);
static const IconData stumbleupon = const _IconData(0xf1a4);
static const IconData delicious = const _IconData(0xf1a5);
static const IconData digg = const _IconData(0xf1a6);
static const IconData piedPiperPp = const _IconData(0xf1a7);
static const IconData piedPiperAlt = const _IconData(0xf1a8);
static const IconData drupal = const _IconData(0xf1a9);
static const IconData joomla = const _IconData(0xf1aa);
static const IconData language = const _IconData(0xf1ab);
static const IconData fax = const _IconData(0xf1ac);
static const IconData building = const _IconData(0xf1ad);
static const IconData child = const _IconData(0xf1ae);
static const IconData paw = const _IconData(0xf1b0);
static const IconData spoon = const _IconData(0xf1b1);
static const IconData cube = const _IconData(0xf1b2);
static const IconData cubes = const _IconData(0xf1b3);
static const IconData behance = const _IconData(0xf1b4);
static const IconData behanceSquare = const _IconData(0xf1b5);
static const IconData steam = const _IconData(0xf1b6);
static const IconData steamSquare = const _IconData(0xf1b7);
static const IconData recycle = const _IconData(0xf1b8);
static const IconData automobile = const _IconData(0xf1b9);
static const IconData car = const _IconData(0xf1b9);
static const IconData cab = const _IconData(0xf1ba);
static const IconData taxi = const _IconData(0xf1ba);
static const IconData tree = const _IconData(0xf1bb);
static const IconData spotify = const _IconData(0xf1bc);
static const IconData deviantart = const _IconData(0xf1bd);
static const IconData soundcloud = const _IconData(0xf1be);
static const IconData database = const _IconData(0xf1c0);
static const IconData filePdfO = const _IconData(0xf1c1);
static const IconData fileWordO = const _IconData(0xf1c2);
static const IconData fileExcelO = const _IconData(0xf1c3);
static const IconData filePowerpointO = const _IconData(0xf1c4);
static const IconData filePhotoO = const _IconData(0xf1c5);
static const IconData filePictureO = const _IconData(0xf1c5);
static const IconData fileImageO = const _IconData(0xf1c5);
static const IconData fileZipO = const _IconData(0xf1c6);
static const IconData fileArchiveO = const _IconData(0xf1c6);
static const IconData fileAudioO = const _IconData(0xf1c7);
static const IconData fileVideoO = const _IconData(0xf1c8);
static const IconData fileCodeO = const _IconData(0xf1c9);
static const IconData vine = const _IconData(0xf1ca);
static const IconData codepen = const _IconData(0xf1cb);
static const IconData jsfiddle = const _IconData(0xf1cc);
static const IconData lifeSaver = const _IconData(0xf1cd);
static const IconData support = const _IconData(0xf1cd);
static const IconData circleONotch = const _IconData(0xf1ce);
static const IconData resistance = const _IconData(0xf1d0);
static const IconData rebel = const _IconData(0xf1d0);
static const IconData empire = const _IconData(0xf1d1);
static const IconData gitSquare = const _IconData(0xf1d2);
static const IconData git = const _IconData(0xf1d3);
static const IconData yCombinatorSquare = const _IconData(0xf1d4);
static const IconData hackerNews = const _IconData(0xf1d4);
static const IconData tencentWeibo = const _IconData(0xf1d5);
static const IconData qq = const _IconData(0xf1d6);
static const IconData wechat = const _IconData(0xf1d7);
static const IconData weixin = const _IconData(0xf1d7);
static const IconData send = const _IconData(0xf1d8);
static const IconData paperPlane = const _IconData(0xf1d8);
static const IconData sendO = const _IconData(0xf1d9);
static const IconData paperPlaneO = const _IconData(0xf1d9);
static const IconData history = const _IconData(0xf1da);
static const IconData circleThin = const _IconData(0xf1db);
static const IconData header = const _IconData(0xf1dc);
static const IconData paragraph = const _IconData(0xf1dd);
static const IconData sliders = const _IconData(0xf1de);
static const IconData shareAlt = const _IconData(0xf1e0);
static const IconData shareAltSquare = const _IconData(0xf1e1);
static const IconData bomb = const _IconData(0xf1e2);
static const IconData soccerBallO = const _IconData(0xf1e3);
static const IconData futbolO = const _IconData(0xf1e3);
static const IconData tty = const _IconData(0xf1e4);
static const IconData binoculars = const _IconData(0xf1e5);
static const IconData plug = const _IconData(0xf1e6);
static const IconData slideshare = const _IconData(0xf1e7);
static const IconData twitch = const _IconData(0xf1e8);
static const IconData yelp = const _IconData(0xf1e9);
static const IconData newspaperO = const _IconData(0xf1ea);
static const IconData wifi = const _IconData(0xf1eb);
static const IconData calculator = const _IconData(0xf1ec);
static const IconData paypal = const _IconData(0xf1ed);
static const IconData googleWallet = const _IconData(0xf1ee);
static const IconData ccVisa = const _IconData(0xf1f0);
static const IconData ccMastercard = const _IconData(0xf1f1);
static const IconData ccDiscover = const _IconData(0xf1f2);
static const IconData ccAmex = const _IconData(0xf1f3);
static const IconData ccPaypal = const _IconData(0xf1f4);
static const IconData ccStripe = const _IconData(0xf1f5);
static const IconData bellSlash = const _IconData(0xf1f6);
static const IconData bellSlashO = const _IconData(0xf1f7);
static const IconData trash = const _IconData(0xf1f8);
static const IconData copyright = const _IconData(0xf1f9);
static const IconData at = const _IconData(0xf1fa);
static const IconData eyedropper = const _IconData(0xf1fb);
static const IconData paintBrush = const _IconData(0xf1fc);
static const IconData birthdayCake = const _IconData(0xf1fd);
static const IconData areaChart = const _IconData(0xf1fe);
static const IconData pieChart = const _IconData(0xf200);
static const IconData lineChart = const _IconData(0xf201);
static const IconData lastfm = const _IconData(0xf202);
static const IconData lastfmSquare = const _IconData(0xf203);
static const IconData toggleOff = const _IconData(0xf204);
static const IconData toggleOn = const _IconData(0xf205);
static const IconData bicycle = const _IconData(0xf206);
static const IconData bus = const _IconData(0xf207);
static const IconData ioxhost = const _IconData(0xf208);
static const IconData angellist = const _IconData(0xf209);
static const IconData cc = const _IconData(0xf20a);
static const IconData shekel = const _IconData(0xf20b);
static const IconData ils = const _IconData(0xf20b);
static const IconData meanpath = const _IconData(0xf20c);
static const IconData buysellads = const _IconData(0xf20d);
static const IconData connectdevelop = const _IconData(0xf20e);
static const IconData dashcube = const _IconData(0xf210);
static const IconData forumbee = const _IconData(0xf211);
static const IconData leanpub = const _IconData(0xf212);
static const IconData sellsy = const _IconData(0xf213);
static const IconData shirtsinbulk = const _IconData(0xf214);
static const IconData simplybuilt = const _IconData(0xf215);
static const IconData skyatlas = const _IconData(0xf216);
static const IconData cartPlus = const _IconData(0xf217);
static const IconData cartArrowDown = const _IconData(0xf218);
static const IconData diamond = const _IconData(0xf219);
static const IconData ship = const _IconData(0xf21a);
static const IconData userSecret = const _IconData(0xf21b);
static const IconData motorcycle = const _IconData(0xf21c);
static const IconData streetView = const _IconData(0xf21d);
static const IconData heartbeat = const _IconData(0xf21e);
static const IconData venus = const _IconData(0xf221);
static const IconData mars = const _IconData(0xf222);
static const IconData mercury = const _IconData(0xf223);
static const IconData intersex = const _IconData(0xf224);
static const IconData transgender = const _IconData(0xf224);
static const IconData transgenderAlt = const _IconData(0xf225);
static const IconData venusDouble = const _IconData(0xf226);
static const IconData marsDouble = const _IconData(0xf227);
static const IconData venusMars = const _IconData(0xf228);
static const IconData marsStroke = const _IconData(0xf229);
static const IconData marsStrokeV = const _IconData(0xf22a);
static const IconData marsStrokeH = const _IconData(0xf22b);
static const IconData neuter = const _IconData(0xf22c);
static const IconData genderless = const _IconData(0xf22d);
static const IconData facebookOfficial = const _IconData(0xf230);
static const IconData pinterestP = const _IconData(0xf231);
static const IconData whatsapp = const _IconData(0xf232);
static const IconData server = const _IconData(0xf233);
static const IconData userPlus = const _IconData(0xf234);
static const IconData userTimes = const _IconData(0xf235);
static const IconData hotel = const _IconData(0xf236);
static const IconData bed = const _IconData(0xf236);
static const IconData viacoin = const _IconData(0xf237);
static const IconData train = const _IconData(0xf238);
static const IconData subway = const _IconData(0xf239);
static const IconData medium = const _IconData(0xf23a);
static const IconData yCombinator = const _IconData(0xf23b);
static const IconData optinMonster = const _IconData(0xf23c);
static const IconData opencart = const _IconData(0xf23d);
static const IconData expeditedssl = const _IconData(0xf23e);
static const IconData battery = const _IconData(0xf240);
static const IconData batteryFull = const _IconData(0xf240);
static const IconData batteryThreeQuarters = const _IconData(0xf241);
static const IconData batteryHalf = const _IconData(0xf242);
static const IconData batteryQuarter = const _IconData(0xf243);
static const IconData batteryEmpty = const _IconData(0xf244);
static const IconData mousePointer = const _IconData(0xf245);
static const IconData iCursor = const _IconData(0xf246);
static const IconData objectGroup = const _IconData(0xf247);
static const IconData objectUngroup = const _IconData(0xf248);
static const IconData stickyNote = const _IconData(0xf249);
static const IconData stickyNoteO = const _IconData(0xf24a);
static const IconData ccJcb = const _IconData(0xf24b);
static const IconData ccDinersClub = const _IconData(0xf24c);
static const IconData clone = const _IconData(0xf24d);
static const IconData balanceScale = const _IconData(0xf24e);
static const IconData hourglassO = const _IconData(0xf250);
static const IconData hourglassFull = const _IconData(0xf251);
static const IconData hourglassHalf = const _IconData(0xf252);
static const IconData hourglassEmpty = const _IconData(0xf253);
static const IconData hourglass = const _IconData(0xf254);
static const IconData handGrabO = const _IconData(0xf255);
static const IconData handRockO = const _IconData(0xf255);
static const IconData handStopO = const _IconData(0xf256);
static const IconData handPaperO = const _IconData(0xf256);
static const IconData handScissorsO = const _IconData(0xf257);
static const IconData handLizardO = const _IconData(0xf258);
static const IconData handSpockO = const _IconData(0xf259);
static const IconData handPointerO = const _IconData(0xf25a);
static const IconData handPeaceO = const _IconData(0xf25b);
static const IconData trademark = const _IconData(0xf25c);
static const IconData registered = const _IconData(0xf25d);
static const IconData creativeCommons = const _IconData(0xf25e);
static const IconData gg = const _IconData(0xf260);
static const IconData ggCircle = const _IconData(0xf261);
static const IconData tripadvisor = const _IconData(0xf262);
static const IconData odnoklassniki = const _IconData(0xf263);
static const IconData odnoklassnikiSquare = const _IconData(0xf264);
static const IconData getPocket = const _IconData(0xf265);
static const IconData wikipediaW = const _IconData(0xf266);
static const IconData safari = const _IconData(0xf267);
static const IconData chrome = const _IconData(0xf268);
static const IconData firefox = const _IconData(0xf269);
static const IconData opera = const _IconData(0xf26a);
static const IconData internetExplorer = const _IconData(0xf26b);
static const IconData television = const _IconData(0xf26c);
static const IconData contao = const _IconData(0xf26d);
static const IconData fiveHundredPx = const _IconData(0xf26e);
static const IconData amazon = const _IconData(0xf270);
static const IconData calendarPlusO = const _IconData(0xf271);
static const IconData calendarMinusO = const _IconData(0xf272);
static const IconData calendarTimesO = const _IconData(0xf273);
static const IconData calendarCheckO = const _IconData(0xf274);
static const IconData industry = const _IconData(0xf275);
static const IconData mapPin = const _IconData(0xf276);
static const IconData mapSigns = const _IconData(0xf277);
static const IconData mapO = const _IconData(0xf278);
static const IconData map = const _IconData(0xf279);
static const IconData commenting = const _IconData(0xf27a);
static const IconData commentingO = const _IconData(0xf27b);
static const IconData houzz = const _IconData(0xf27c);
static const IconData vimeo = const _IconData(0xf27d);
static const IconData blackTie = const _IconData(0xf27e);
static const IconData fonticons = const _IconData(0xf280);
static const IconData redditAlien = const _IconData(0xf281);
static const IconData edge = const _IconData(0xf282);
static const IconData creditCardAlt = const _IconData(0xf283);
static const IconData codiepie = const _IconData(0xf284);
static const IconData modx = const _IconData(0xf285);
static const IconData fortAwesome = const _IconData(0xf286);
static const IconData usb = const _IconData(0xf287);
static const IconData productHunt = const _IconData(0xf288);
static const IconData mixcloud = const _IconData(0xf289);
static const IconData scribd = const _IconData(0xf28a);
static const IconData pauseCircle = const _IconData(0xf28b);
static const IconData pauseCircleO = const _IconData(0xf28c);
static const IconData stopCircle = const _IconData(0xf28d);
static const IconData stopCircleO = const _IconData(0xf28e);
static const IconData shoppingBag = const _IconData(0xf290);
static const IconData shoppingBasket = const _IconData(0xf291);
static const IconData hashtag = const _IconData(0xf292);
static const IconData bluetooth = const _IconData(0xf293);
static const IconData bluetoothB = const _IconData(0xf294);
static const IconData percent = const _IconData(0xf295);
static const IconData gitlab = const _IconData(0xf296);
static const IconData wpbeginner = const _IconData(0xf297);
static const IconData wpforms = const _IconData(0xf298);
static const IconData envira = const _IconData(0xf299);
static const IconData universalAccess = const _IconData(0xf29a);
static const IconData wheelchairAlt = const _IconData(0xf29b);
static const IconData questionCircleO = const _IconData(0xf29c);
static const IconData blind = const _IconData(0xf29d);
static const IconData audioDescription = const _IconData(0xf29e);
static const IconData volumeControlPhone = const _IconData(0xf2a0);
static const IconData braille = const _IconData(0xf2a1);
static const IconData assistiveListeningSystems = const _IconData(0xf2a2);
static const IconData americanSignLanguageInterpreting =
const _IconData(0xf2a3);
static const IconData deaf = const _IconData(0xf2a4);
static const IconData glide = const _IconData(0xf2a5);
static const IconData glideG = const _IconData(0xf2a6);
static const IconData signLanguage = const _IconData(0xf2a7);
static const IconData lowVision = const _IconData(0xf2a8);
static const IconData viadeo = const _IconData(0xf2a9);
static const IconData viadeoSquare = const _IconData(0xf2aa);
static const IconData snapchat = const _IconData(0xf2ab);
static const IconData snapchatGhost = const _IconData(0xf2ac);
static const IconData snapchatSquare = const _IconData(0xf2ad);
static const IconData piedPiper = const _IconData(0xf2ae);
static const IconData firstOrder = const _IconData(0xf2b0);
static const IconData yoast = const _IconData(0xf2b1);
static const IconData themeisle = const _IconData(0xf2b2);
static const IconData googlePlusOfficial = const _IconData(0xf2b3);
static const IconData fontAwesome = const _IconData(0xf2b4);
static const IconData handshakeO = const _IconData(0xf2b5);
static const IconData envelopeOpen = const _IconData(0xf2b6);
static const IconData envelopeOpenO = const _IconData(0xf2b7);
static const IconData linode = const _IconData(0xf2b8);
static const IconData addressBook = const _IconData(0xf2b9);
static const IconData addressBookO = const _IconData(0xf2ba);
static const IconData vCard = const _IconData(0xf2bb);
static const IconData addressCard = const _IconData(0xf2bb);
static const IconData vCardO = const _IconData(0xf2bc);
static const IconData addressCardO = const _IconData(0xf2bc);
static const IconData userCircle = const _IconData(0xf2bd);
static const IconData userCircleO = const _IconData(0xf2be);
static const IconData userO = const _IconData(0xf2c0);
static const IconData idBadge = const _IconData(0xf2c1);
static const IconData driversLicense = const _IconData(0xf2c2);
static const IconData idCard = const _IconData(0xf2c2);
static const IconData driversLicenseO = const _IconData(0xf2c3);
static const IconData idCardO = const _IconData(0xf2c3);
static const IconData quora = const _IconData(0xf2c4);
static const IconData freeCodeCamp = const _IconData(0xf2c5);
static const IconData telegram = const _IconData(0xf2c6);
static const IconData thermometer = const _IconData(0xf2c7);
static const IconData thermometerFull = const _IconData(0xf2c7);
static const IconData thermometerThreeQuarters = const _IconData(0xf2c8);
static const IconData thermometerHalf = const _IconData(0xf2c9);
static const IconData thermometerQuarter = const _IconData(0xf2ca);
static const IconData thermometerEmpty = const _IconData(0xf2cb);
static const IconData shower = const _IconData(0xf2cc);
static const IconData bathtub = const _IconData(0xf2cd);
static const IconData podcast = const _IconData(0xf2ce);
static const IconData windowMaximize = const _IconData(0xf2d0);
static const IconData windowMinimize = const _IconData(0xf2d1);
static const IconData windowRestore = const _IconData(0xf2d2);
static const IconData timesRectangle = const _IconData(0xf2d3);
static const IconData windowClose = const _IconData(0xf2d3);
static const IconData timesRectangleO = const _IconData(0xf2d4);
static const IconData windowCloseO = const _IconData(0xf2d4);
static const IconData bandcamp = const _IconData(0xf2d5);
static const IconData grav = const _IconData(0xf2d6);
static const IconData etsy = const _IconData(0xf2d7);
static const IconData imdb = const _IconData(0xf2d8);
static const IconData ravelry = const _IconData(0xf2d9);
static const IconData eercast = const _IconData(0xf2da);
static const IconData microchip = const _IconData(0xf2db);
static const IconData snowflakeO = const _IconData(0xf2dc);
static const IconData superpowers = const _IconData(0xf2dd);
static const IconData wpexplorer = const _IconData(0xf2de);
static const IconData meetup = const _IconData(0xf2e0);
}
class _IconData extends IconData {
const _IconData(int codePoint) : super(codePoint, fontFamily: 'FontAwesome');
}
name: font_awesome_flutter
version: 4.7.0
description: The Font Awesome Icon pack available as Flutter Icons
dependencies:
flutter:
sdk: flutter
flutter:
uses-material-design: true
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment