From e34ecaa8ee0e4c3709a512115f12716a44b253f4 Mon Sep 17 00:00:00 2001 From: Justin <57725347+juskek@users.noreply.github.com> Date: Fri, 30 Sep 2022 09:36:09 +0100 Subject: [PATCH] Exposed Help classes --- CHANGELOG.md | 5 +++++ README.md | 1 + lib/flutter_dev_utils.dart | 3 +++ lib/src/inline_help/{singleton => }/help_singleton.dart | 0 pubspec.yaml | 2 +- 5 files changed, 10 insertions(+), 1 deletion(-) rename lib/src/inline_help/{singleton => }/help_singleton.dart (100%) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8629388..c20c022 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 0.0.1+1 + +* Exposed Help classes +* Updated README + ## 0.0.1 * Added Help classes diff --git a/README.md b/README.md index 1235523..70a22c1 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ Flutter dev utils to make your life easier * Built off logger package with functionality to print caller, ignore certain callers, and filter printed logs by caller type * Help * HelpFoo classes which can be used for inline code help. + ![Alt Text](https://github.com/Kek-Tech/flutter_dev_utils/blob/main/assets/HelpClass.gif) ## Usage diff --git a/lib/flutter_dev_utils.dart b/lib/flutter_dev_utils.dart index b8f8b27..5e6df3c 100644 --- a/lib/flutter_dev_utils.dart +++ b/lib/flutter_dev_utils.dart @@ -1,5 +1,8 @@ library flutter_dev_utils; +export 'package:flutter_dev_utils/src/inline_help/help_error.dart'; +export 'package:flutter_dev_utils/src/inline_help/help_singleton.dart'; + export 'package:flutter_dev_utils/src/try_handler/sync_try_handler.dart'; export 'package:flutter_dev_utils/src/try_handler/async_try_handler.dart'; export 'package:flutter_dev_utils/src/caller_logger/caller_logger.dart'; diff --git a/lib/src/inline_help/singleton/help_singleton.dart b/lib/src/inline_help/help_singleton.dart similarity index 100% rename from lib/src/inline_help/singleton/help_singleton.dart rename to lib/src/inline_help/help_singleton.dart diff --git a/pubspec.yaml b/pubspec.yaml index 5e0a0c5..bc70b6d 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_dev_utils description: Developer utils to make your life easier. -version: 0.0.1 +version: 0.0.1+1 homepage: https://github.com/Kek-Tech/flutter_dev_utils # publish_to: none # Remove this line if you wish to publish to pub.dev