From 8377828f146b9480fcc65bad470898ef80279a4e Mon Sep 17 00:00:00 2001 From: Hans Kokx Date: Tue, 1 Oct 2024 12:22:24 +0200 Subject: [PATCH] Added a bulletPoint to the CommonString class Signed-off-by: Hans Kokx --- CHANGELOG.md | 4 ++++ lib/src/extensions/string.dart | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 18048e5..9739d74 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.2 + +* Added bulletPoint to CommonString + ## 1.0.1 * Added Unfocuser widget and JSON converters diff --git a/lib/src/extensions/string.dart b/lib/src/extensions/string.dart index 2110339..3cf1532 100644 --- a/lib/src/extensions/string.dart +++ b/lib/src/extensions/string.dart @@ -4,6 +4,10 @@ abstract class CommonString { /// An em dash (`—`) is commonly used in typography to set off parenthetical /// phrases or provide emphasis in a sentence. static const String emDash = "—"; + + /// A bullet point (`•`) is a small, round symbol used in typography to indicate a new + /// item in a list or to separate items in a series. + static const String bulletPoint = "•"; } extension Nullability on String? {