forked from Idean/Flutter-Neumorphic
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Florent Champigny
committed
Apr 29, 2020
1 parent
dc40eeb
commit db70fc7
Showing
9 changed files
with
77 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
cfef159417496ef16f851b4f7d1f3939 | ||
6595ea39b2066adf130c119d8cae71e7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"name": "NeumorphicIcons", | ||
"css_prefix_text": "", | ||
"css_use_suffix": false, | ||
"hinting": true, | ||
"units_per_em": 1000, | ||
"ascent": 850, | ||
"glyphs": [ | ||
{ | ||
"uid": "83b1dd96a1760c9d049edbba9b96f2b2", | ||
"css": "check", | ||
"code": 59392, | ||
"src": "material" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/// Flutter icons NeumorphicIcons | ||
/// Copyright (C) 2020 by original authors @ fluttericon.com, fontello.com | ||
/// This font was generated by FlutterIcon.com, which is derived from Fontello. | ||
/// | ||
/// To use this font, place it in your fonts/ directory and include the | ||
/// following in your pubspec.yaml | ||
/// | ||
/// flutter: | ||
/// fonts: | ||
/// - family: NeumorphicIcons | ||
/// fonts: | ||
/// - asset: fonts/NeumorphicIcons.ttf | ||
/// | ||
/// | ||
/// * Material Design Icons, Copyright (C) Google, Inc | ||
/// Author: Google | ||
/// License: Apache 2.0 (https://www.apache.org/licenses/LICENSE-2.0) | ||
/// Homepage: https://design.google.com/icons/ | ||
/// | ||
import 'package:flutter/widgets.dart'; | ||
|
||
class NeumorphicIcons { | ||
NeumorphicIcons._(); | ||
|
||
static const _kFontFam = 'NeumorphicIcons'; | ||
static const _kFontPkg = "flutter_neumorphic"; | ||
|
||
static const IconData check = IconData(0xe800, fontFamily: _kFontFam, fontPackage: _kFontPkg); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters