mirror of
https://github.com/hanskokx/arcane_helper_utils.git
synced 2026-05-14 10:29:07 +02:00
+9
-4
@@ -1,15 +1,20 @@
|
|||||||
|
|
||||||
|
## 1.0.3+1
|
||||||
|
|
||||||
|
- Updated documentation
|
||||||
|
|
||||||
## 1.0.3
|
## 1.0.3
|
||||||
|
|
||||||
* Updated linting rules to use arcane_analysis
|
- Updated linting rules to use arcane_analysis
|
||||||
|
|
||||||
## 1.0.2
|
## 1.0.2
|
||||||
|
|
||||||
* Added bulletPoint to CommonString
|
- Added bulletPoint to CommonString
|
||||||
|
|
||||||
## 1.0.1
|
## 1.0.1
|
||||||
|
|
||||||
* Added Unfocuser widget and JSON converters
|
- Added Unfocuser widget and JSON converters
|
||||||
|
|
||||||
## 1.0.0
|
## 1.0.0
|
||||||
|
|
||||||
* Initial release
|
- Initial release
|
||||||
|
|||||||
@@ -10,11 +10,35 @@ abstract class CommonString {
|
|||||||
static const String bulletPoint = "•";
|
static const String bulletPoint = "•";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// An extension that adds convenience methods to handle nullability and
|
||||||
|
/// emptiness checks for `String?` types.
|
||||||
extension Nullability on String? {
|
extension Nullability on String? {
|
||||||
/// Returns `true` if the `String?` is neither `null` nor only contains whitespace.
|
/// Returns `true` if the `String?` is neither `null` nor contains only whitespace.
|
||||||
|
///
|
||||||
|
/// This is useful for cases where you want to check if a nullable string has a valid
|
||||||
|
/// non-empty, non-whitespace value.
|
||||||
|
///
|
||||||
|
/// Example usage:
|
||||||
|
/// ```dart
|
||||||
|
/// String? example = "Hello";
|
||||||
|
/// if (example.isNotNullOrEmpty) {
|
||||||
|
/// print("The string is not null and not empty");
|
||||||
|
/// }
|
||||||
|
/// ```
|
||||||
bool get isNotNullOrEmpty => !isNullOrEmpty;
|
bool get isNotNullOrEmpty => !isNullOrEmpty;
|
||||||
|
|
||||||
/// Returns `true` if the `String?` is either `null` or contains only whitespace.
|
/// Returns `true` if the `String?` is either `null` or contains only whitespace.
|
||||||
|
///
|
||||||
|
/// This is a handy utility to check if a nullable string is either not assigned
|
||||||
|
/// or effectively empty (including strings with only whitespace characters).
|
||||||
|
///
|
||||||
|
/// Example usage:
|
||||||
|
/// ```dart
|
||||||
|
/// String? example = null;
|
||||||
|
/// if (example.isNullOrEmpty) {
|
||||||
|
/// print("The string is null or empty");
|
||||||
|
/// }
|
||||||
|
/// ```
|
||||||
bool get isNullOrEmpty => this == null || (this ?? "").trim().isEmpty;
|
bool get isNullOrEmpty => this == null || (this ?? "").trim().isEmpty;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -26,14 +26,47 @@ THE SOFTWARE.
|
|||||||
|
|
||||||
import "package:flutter/material.dart";
|
import "package:flutter/material.dart";
|
||||||
|
|
||||||
|
/// A widget that unfocuses the currently focused widget when tapping outside of it.
|
||||||
|
///
|
||||||
|
/// This is useful for dismissing the keyboard or any focused input field when the user
|
||||||
|
/// taps outside of the focused area. The widget wraps its `child` with a `GestureDetector`
|
||||||
|
/// that detects taps and unfocuses the primary focus if there is any.
|
||||||
|
///
|
||||||
|
/// The unfocus behavior can be disabled by setting [isEnabled] to `false`.
|
||||||
|
///
|
||||||
|
/// Example usage:
|
||||||
|
///
|
||||||
|
/// ```dart
|
||||||
|
/// Unfocuser(
|
||||||
|
/// child: YourWidget(),
|
||||||
|
/// )
|
||||||
|
/// ```
|
||||||
|
///
|
||||||
|
/// This will unfocus any input fields when the user taps outside of them.
|
||||||
|
///
|
||||||
|
/// [child] The widget that this widget wraps.
|
||||||
|
/// [isEnabled] Whether the unfocus behavior is enabled. Defaults to `true`.
|
||||||
class Unfocuser extends StatelessWidget {
|
class Unfocuser extends StatelessWidget {
|
||||||
|
/// Creates an [Unfocuser] widget.
|
||||||
|
///
|
||||||
|
/// The [child] parameter must not be null. The [isEnabled] parameter determines
|
||||||
|
/// whether the unfocus functionality is active.
|
||||||
const Unfocuser({
|
const Unfocuser({
|
||||||
required this.child,
|
required this.child,
|
||||||
super.key,
|
super.key,
|
||||||
this.isEnabled = true,
|
this.isEnabled = true,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
/// The widget below this widget in the tree.
|
||||||
|
///
|
||||||
|
/// This widget will be wrapped with a `GestureDetector` that triggers an
|
||||||
|
/// unfocus action when tapped outside a focused widget, if [isEnabled] is `true`.
|
||||||
final Widget child;
|
final Widget child;
|
||||||
|
|
||||||
|
/// Whether this widget will trigger the unfocus action.
|
||||||
|
///
|
||||||
|
/// If set to `true`, tapping outside a focused widget will unfocus it.
|
||||||
|
/// Defaults to `true`.
|
||||||
final bool isEnabled;
|
final bool isEnabled;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
|
|||||||
+1
-1
@@ -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.0.3
|
version: 1.0.3+1
|
||||||
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
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user