-
Notifications
You must be signed in to change notification settings - Fork 256
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes: #200
- Loading branch information
Showing
19 changed files
with
1,938 additions
and
1 deletion.
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
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,55 @@ | ||
|
||
import 'package:flutter/widgets.dart'; | ||
|
||
// ignore_for_file: constant_identifier_names | ||
|
||
/// Identifiers for Zulip's custom icons. | ||
/// | ||
/// Use these with the [Icon] widget, in the same way as one uses | ||
/// the members of the [Icons] class from Flutter's Material library. | ||
abstract final class ZulipIcons { | ||
// Generated code; do not edit. | ||
// | ||
// To add a new icon, or otherwise edit the set of icons: | ||
// | ||
// * Add an SVG file in `assets/icons/`, | ||
// or otherwise edit the SVG files there. | ||
// | ||
// * Then run the command `scripts/icons/build-icon-font`. | ||
// That will update this file and the generated icon font, | ||
// `assets/icons/ZulipIcons.ttf`. | ||
// | ||
// BEGIN GENERATED ICON DATA | ||
|
||
/// The Zulip custom icon "bot". | ||
static const IconData bot = IconData(0xf101, fontFamily: "Zulip Icons"); | ||
|
||
/// The Zulip custom icon "globe". | ||
static const IconData globe = IconData(0xf102, fontFamily: "Zulip Icons"); | ||
|
||
/// The Zulip custom icon "hash_sign". | ||
static const IconData hash_sign = IconData(0xf103, fontFamily: "Zulip Icons"); | ||
|
||
/// The Zulip custom icon "language". | ||
static const IconData language = IconData(0xf104, fontFamily: "Zulip Icons"); | ||
|
||
/// The Zulip custom icon "lock". | ||
static const IconData lock = IconData(0xf105, fontFamily: "Zulip Icons"); | ||
|
||
/// The Zulip custom icon "mute". | ||
static const IconData mute = IconData(0xf106, fontFamily: "Zulip Icons"); | ||
|
||
/// The Zulip custom icon "read_receipts". | ||
static const IconData read_receipts = IconData(0xf107, fontFamily: "Zulip Icons"); | ||
|
||
/// The Zulip custom icon "topic". | ||
static const IconData topic = IconData(0xf108, fontFamily: "Zulip Icons"); | ||
|
||
/// The Zulip custom icon "unmute". | ||
static const IconData unmute = IconData(0xf109, fontFamily: "Zulip Icons"); | ||
|
||
/// The Zulip custom icon "user". | ||
static const IconData user = IconData(0xf10a, fontFamily: "Zulip Icons"); | ||
|
||
// END GENERATED ICON DATA | ||
} |
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 @@ | ||
node_modules/ |
Oops, something went wrong.