Unverified Commit 69aac4ac authored by Michael Spiss's avatar Michael Spiss Committed by GitHub

Update IconDatas to allow light, pro icons

parent 72d830ab
......@@ -28,3 +28,13 @@ class IconDataRegular extends IconData {
fontPackage: 'font_awesome_flutter',
);
}
// Pro only
class IconDataLight extends IconData {
const IconDataLight(int codePoint)
: super(
codePoint,
fontFamily: 'FontAwesomeLight',
fontPackage: 'font_awesome_flutter',
);
}
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