Skip to content

icons: Add group_dm custom icon, for recent-DMs screen #248

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified assets/icons/ZulipIcons.ttf
Binary file not shown.
1 change: 1 addition & 0 deletions assets/icons/group_dm.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 12 additions & 8 deletions lib/widgets/icons.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ abstract final class ZulipIcons {
//
// * Add an SVG file in `assets/icons/`,
// or otherwise edit the SVG files there.
// The files' names (before ".svg") should be valid Dart identifiers.
//
// * Then run the command `scripts/icons/build-icon-font`.
// That will update this file and the generated icon font,
Expand All @@ -27,29 +28,32 @@ abstract final class ZulipIcons {
/// The Zulip custom icon "globe".
static const IconData globe = IconData(0xf102, fontFamily: "Zulip Icons");

/// The Zulip custom icon "group_dm".
static const IconData group_dm = IconData(0xf103, fontFamily: "Zulip Icons");

/// The Zulip custom icon "hash_sign".
static const IconData hash_sign = IconData(0xf103, fontFamily: "Zulip Icons");
static const IconData hash_sign = IconData(0xf104, fontFamily: "Zulip Icons");

/// The Zulip custom icon "language".
static const IconData language = IconData(0xf104, fontFamily: "Zulip Icons");
static const IconData language = IconData(0xf105, fontFamily: "Zulip Icons");

/// The Zulip custom icon "lock".
static const IconData lock = IconData(0xf105, fontFamily: "Zulip Icons");
static const IconData lock = IconData(0xf106, fontFamily: "Zulip Icons");

/// The Zulip custom icon "mute".
static const IconData mute = IconData(0xf106, fontFamily: "Zulip Icons");
static const IconData mute = IconData(0xf107, fontFamily: "Zulip Icons");

/// The Zulip custom icon "read_receipts".
static const IconData read_receipts = IconData(0xf107, fontFamily: "Zulip Icons");
static const IconData read_receipts = IconData(0xf108, fontFamily: "Zulip Icons");

/// The Zulip custom icon "topic".
static const IconData topic = IconData(0xf108, fontFamily: "Zulip Icons");
static const IconData topic = IconData(0xf109, fontFamily: "Zulip Icons");

/// The Zulip custom icon "unmute".
static const IconData unmute = IconData(0xf109, fontFamily: "Zulip Icons");
static const IconData unmute = IconData(0xf10a, fontFamily: "Zulip Icons");

/// The Zulip custom icon "user".
static const IconData user = IconData(0xf10a, fontFamily: "Zulip Icons");
static const IconData user = IconData(0xf10b, fontFamily: "Zulip Icons");

// END GENERATED ICON DATA
}