Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
font_awesome_flutter
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
font_awesome_flutter
Commits
4fd74f52
Unverified
Commit
4fd74f52
authored
Mar 28, 2020
by
Brian Egan
Committed by
GitHub
Mar 28, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #85 from fluttercommunity/michaelspiss-icondata-access
Fixes #84 by exporting icon_data.dart
parents
0bcf63ef
77c52ad4
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
34 additions
and
11 deletions
+34
-11
CHANGELOG.md
CHANGELOG.md
+3
-0
font_awesome_flutter.dart
lib/font_awesome_flutter.dart
+1
-0
fa_duotone_icon.dart
lib/src/fa_duotone_icon.dart
+7
-7
icon_data.dart
lib/src/icon_data.dart
+17
-0
pubspec.yaml
pubspec.yaml
+1
-1
generate_font.dart
tool/generate_font.dart
+5
-3
No files found.
CHANGELOG.md
View file @
4fd74f52
## 8.8.1
*
Fix icon_data.dart not being accessible
## 8.8.0
*
Upgrade to Font Awesome Icons 5.13
...
...
lib/font_awesome_flutter.dart
View file @
4fd74f52
...
...
@@ -3,6 +3,7 @@ library font_awesome_flutter;
import
'package:flutter/widgets.dart'
;
import
'package:font_awesome_flutter/src/icon_data.dart'
;
export
'package:font_awesome_flutter/src/fa_icon.dart'
;
export
'package:font_awesome_flutter/src/icon_data.dart'
;
// THIS FILE IS AUTOMATICALLY GENERATED!
...
...
lib/src/fa_duotone_icon.dart
View file @
4fd74f52
...
...
@@ -38,13 +38,13 @@ class FaDuotoneIcon extends StatelessWidget {
final
String
semanticLabel
;
const
FaDuotoneIcon
(
this
.
icon
,
{
Key
key
,
this
.
size
,
this
.
primaryColor
,
this
.
secondaryColor
,
this
.
semanticLabel
,
})
:
assert
(
icon
!=
null
),
this
.
icon
,
{
Key
key
,
this
.
size
,
this
.
primaryColor
,
this
.
secondaryColor
,
this
.
semanticLabel
,
})
:
assert
(
icon
!=
null
),
super
(
key:
key
);
@override
...
...
lib/src/icon_data.dart
View file @
4fd74f52
...
...
@@ -2,6 +2,9 @@ library font_awesome_flutter;
import
'package:flutter/widgets.dart'
;
/// [IconData] for a font awesome brand icon from a code point
///
/// Code points can be obtained from fontawesome.com
class
IconDataBrands
extends
IconData
{
const
IconDataBrands
(
int
codePoint
)
:
super
(
...
...
@@ -11,6 +14,9 @@ class IconDataBrands extends IconData {
);
}
/// [IconData] for a font awesome solid icon from a code point
///
/// Code points can be obtained from fontawesome.com
class
IconDataSolid
extends
IconData
{
const
IconDataSolid
(
int
codePoint
)
:
super
(
...
...
@@ -20,6 +26,9 @@ class IconDataSolid extends IconData {
);
}
/// [IconData] for a font awesome regular icon from a code point
///
/// Code points can be obtained from fontawesome.com
class
IconDataRegular
extends
IconData
{
const
IconDataRegular
(
int
codePoint
)
:
super
(
...
...
@@ -29,6 +38,10 @@ class IconDataRegular extends IconData {
);
}
/// [IconData] for a font awesome light icon from a code point. Only works if
/// light icons (pro) have been installed.
///
/// Code points can be obtained from fontawesome.com
class
IconDataLight
extends
IconData
{
const
IconDataLight
(
int
codePoint
)
:
super
(
...
...
@@ -38,6 +51,10 @@ class IconDataLight extends IconData {
);
}
/// [IconData] for a font awesome duotone icon from a code point. Only works if
/// duotone icons (pro) have been installed.
///
/// Code points can be obtained from fontawesome.com
class
IconDataDuotone
extends
IconData
{
const
IconDataDuotone
(
int
codePoint
)
:
super
(
...
...
pubspec.yaml
View file @
4fd74f52
...
...
@@ -5,7 +5,7 @@ authors:
-
Flutter Community <community@flutter.zone>
-
Brian Egan <brian@brianegan.com>
homepage
:
https://github.com/fluttercommunity/font_awesome_flutter
version
:
8.8.
0
version
:
8.8.
1
environment
:
sdk
:
"
>=2.0.0-dev.28.0
<3.0.0"
...
...
tool/generate_font.dart
View file @
4fd74f52
...
...
@@ -32,7 +32,7 @@ void main(List<String> arguments) {
);
}
if
(
styles
.
contains
(
'duotone'
))
{
if
(
styles
.
contains
(
'duotone'
))
{
hasDuotone
=
true
;
}
...
...
@@ -59,10 +59,12 @@ void main(List<String> arguments) {
"import 'package:flutter/widgets.dart';"
,
"import 'package:font_awesome_flutter/src/icon_data.dart';"
,
"export 'package:font_awesome_flutter/src/fa_icon.dart';"
,
"export 'package:font_awesome_flutter/src/icon_data.dart';"
,
];
if
(
hasDuotone
)
{
generatedOutput
.
add
(
"export 'package:font_awesome_flutter/src/fa_duotone_icon.dart';"
);
if
(
hasDuotone
)
{
generatedOutput
.
add
(
"export 'package:font_awesome_flutter/src/fa_duotone_icon.dart';"
);
}
generatedOutput
.
addAll
([
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment