-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
d2d60b6
commit 6faee76
Showing
7 changed files
with
228 additions
and
48 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
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,28 @@ | ||
import 'package:fluentui_system_icons/fluentui_system_icons.dart'; | ||
import 'package:flutter/material.dart'; | ||
|
||
enum Symbol { | ||
chevronDown(FluentIcons.chevron_down_48_regular), | ||
chevronRight(FluentIcons.chevron_right_48_regular), | ||
chevronLeft(FluentIcons.chevron_left_48_regular), | ||
checkmarkStarburst(FluentIcons.checkmark_starburst_24_regular), | ||
copy(FluentIcons.copy_32_regular), | ||
delete(FluentIcons.delete_48_regular), | ||
dismiss(FluentIcons.dismiss_48_regular), | ||
document(FluentIcons.document_48_regular), | ||
documentDownload(FluentIcons.document_header_arrow_down_24_regular), | ||
documentError(FluentIcons.document_error_24_regular), | ||
export(FluentIcons.arrow_export_up_24_regular), | ||
map(FluentIcons.map_24_regular), | ||
questionCircle(FluentIcons.question_circle_48_regular), | ||
refresh(FluentIcons.arrow_counterclockwise_48_regular), | ||
reorderDots(FluentIcons.re_order_dots_vertical_24_regular), | ||
search(FluentIcons.search_48_regular), | ||
shield(FluentIcons.shield_48_regular), | ||
sync(FluentIcons.arrow_sync_circle_24_regular), | ||
tabs(FluentIcons.tabs_24_regular); | ||
|
||
final IconData value; | ||
|
||
const Symbol(this.value); | ||
} |
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,6 +1,12 @@ | ||
import 'package:flutter/material.dart'; | ||
import 'package:fluentui_system_icons/fluentui_system_icons.dart'; | ||
|
||
class TKSymbols{ | ||
TKSymbols._(); | ||
class TKSymbol { | ||
TKSymbol._(); | ||
|
||
|
||
} | ||
static const IconData chevronDown = FluentIcons.chevron_down_48_regular; | ||
static const IconData chevronRight = FluentIcons.chevron_right_48_regular; | ||
static const IconData chevronLeft = FluentIcons.chevron_left_48_regular; | ||
static const IconData reorderDots = | ||
FluentIcons.re_order_dots_vertical_24_regular; | ||
} |
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
Oops, something went wrong.