mirror of
https://github.com/hanskokx/arcane_helper_utils.git
synced 2026-05-14 02:19:09 +02:00
Added nbsp and updated package deps
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
## 1.3.0
|
||||||
|
|
||||||
|
- Added a non-breaking space character to `CommonString` as `CommonString.nbsp`
|
||||||
|
- Updated package dependencies
|
||||||
|
|
||||||
## 1.2.6
|
## 1.2.6
|
||||||
|
|
||||||
- Added the `printValue()` extension.
|
- Added the `printValue()` extension.
|
||||||
|
|||||||
@@ -8,6 +8,10 @@ abstract class CommonString {
|
|||||||
/// A bullet point (`•`) is a small, round symbol used in typography to indicate a new
|
/// 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.
|
/// item in a list or to separate items in a series.
|
||||||
static const String bulletPoint = "•";
|
static const String bulletPoint = "•";
|
||||||
|
|
||||||
|
/// A non-breaking space is similar to a standard space, however it prevents automatic
|
||||||
|
/// line breaks.
|
||||||
|
static const String nbsp = "\u00A0";
|
||||||
}
|
}
|
||||||
|
|
||||||
/// An extension that adds convenience methods to handle nullability and
|
/// An extension that adds convenience methods to handle nullability and
|
||||||
|
|||||||
+3
-3
@@ -1,7 +1,7 @@
|
|||||||
name: arcane_helper_utils
|
name: arcane_helper_utils
|
||||||
description: Provides a variety of helpful utilities and extensions for Flutter
|
description: Provides a variety of helpful utilities and extensions for Flutter
|
||||||
and Dart.
|
and Dart.
|
||||||
version: 1.2.6
|
version: 1.3.0
|
||||||
repository: https://github.com/hanskokx/arcane_helper_utils
|
repository: https://github.com/hanskokx/arcane_helper_utils
|
||||||
issue_tracker: https://github.com/hanskokx/arcane_helper_utils/issues
|
issue_tracker: https://github.com/hanskokx/arcane_helper_utils/issues
|
||||||
|
|
||||||
@@ -14,8 +14,8 @@ environment:
|
|||||||
sdk: ^3.5.2
|
sdk: ^3.5.2
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
freezed_annotation: ^2.4.4
|
freezed_annotation: ^3.0.0
|
||||||
week_number: ^1.1.0
|
week_number: ^1.1.0
|
||||||
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
arcane_analysis: ^1.0.1
|
arcane_analysis: ^1.0.3
|
||||||
|
|||||||
Reference in New Issue
Block a user