-
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
Showing
7 changed files
with
52 additions
and
22 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,3 +1,6 @@ | ||
## [2.0.2] | ||
* 代码优化 | ||
* icon嵌入 | ||
## [2.0.1] | ||
* example 更新 | ||
* toast 参数提示 | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,35 @@ | ||
import 'package:flutter/widgets.dart'; | ||
|
||
const _fontPackage = 'shirne_dialog'; | ||
|
||
class DialogIcons { | ||
static const _fontFamily = 'dicons'; | ||
static const checkmark = IconData(0xe900, fontFamily: _fontFamily); | ||
static const checkmarkCircle = IconData(0xe901, fontFamily: _fontFamily); | ||
static const checkmarkFill = IconData(0xe902, fontFamily: _fontFamily); | ||
static const close = IconData(0xe903, fontFamily: _fontFamily); | ||
static const closeCircle = IconData(0xe904, fontFamily: _fontFamily); | ||
static const closeFill = IconData(0xe905, fontFamily: _fontFamily); | ||
static const help = IconData(0xe906, fontFamily: _fontFamily); | ||
static const helpCircle = IconData(0xe907, fontFamily: _fontFamily); | ||
static const helpFill = IconData(0xe908, fontFamily: _fontFamily); | ||
static const information = IconData(0xe909, fontFamily: _fontFamily); | ||
static const informationCircle = IconData(0xe90a, fontFamily: _fontFamily); | ||
static const informationFill = IconData(0xe90b, fontFamily: _fontFamily); | ||
static const warningFill = IconData(0xe90c, fontFamily: _fontFamily); | ||
static const warningOutline = IconData(0xe90d, fontFamily: _fontFamily); | ||
static const checkmark = | ||
IconData(0xe900, fontFamily: _fontFamily, fontPackage: _fontPackage); | ||
static const checkmarkCircle = | ||
IconData(0xe901, fontFamily: _fontFamily, fontPackage: _fontPackage); | ||
static const checkmarkFill = | ||
IconData(0xe902, fontFamily: _fontFamily, fontPackage: _fontPackage); | ||
static const close = | ||
IconData(0xe903, fontFamily: _fontFamily, fontPackage: _fontPackage); | ||
static const closeCircle = | ||
IconData(0xe904, fontFamily: _fontFamily, fontPackage: _fontPackage); | ||
static const closeFill = | ||
IconData(0xe905, fontFamily: _fontFamily, fontPackage: _fontPackage); | ||
static const help = | ||
IconData(0xe906, fontFamily: _fontFamily, fontPackage: _fontPackage); | ||
static const helpCircle = | ||
IconData(0xe907, fontFamily: _fontFamily, fontPackage: _fontPackage); | ||
static const helpFill = | ||
IconData(0xe908, fontFamily: _fontFamily, fontPackage: _fontPackage); | ||
static const information = | ||
IconData(0xe909, fontFamily: _fontFamily, fontPackage: _fontPackage); | ||
static const informationCircle = | ||
IconData(0xe90a, fontFamily: _fontFamily, fontPackage: _fontPackage); | ||
static const informationFill = | ||
IconData(0xe90b, fontFamily: _fontFamily, fontPackage: _fontPackage); | ||
static const warningFill = | ||
IconData(0xe90c, fontFamily: _fontFamily, fontPackage: _fontPackage); | ||
static const warningOutline = | ||
IconData(0xe90d, fontFamily: _fontFamily, fontPackage: _fontPackage); | ||
} |
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