Skip to content

Commit

Permalink
fix: Added impaktfull_architecture
Browse files Browse the repository at this point in the history
  • Loading branch information
vanlooverenkoen committed Mar 1, 2024
1 parent d90c8e1 commit 9cbf78c
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 103 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 0.0.5

## Fix

- Added `impaktfull_ui` as a dependency

# 0.0.4

## Fix
Expand Down
5 changes: 3 additions & 2 deletions lib/impaktfull_architecture.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ export 'src/util/storage/key_value/key_value_store.dart';
export 'src/util/storage/secure/secure_store.dart';
export 'src/util/storage/shared_prefs/shared_prefs_store.dart';
export 'src/provider/change_notifier_ex.dart';
export 'src/widget/auto_layout/auto_layout.dart';
export 'src/widget/interaction/interaction_feedback.dart';
export 'src/widget/lifecycle/lifecycle_widget.dart';
export 'src/widget/mixin/after_layout.dart';
export 'src/widget/provider/provider_widget.dart';
Expand All @@ -25,10 +23,13 @@ export 'package:device_info_plus/device_info_plus.dart';
export 'package:dio/dio.dart';
export 'package:gap/gap.dart';
export 'package:get_it/get_it.dart';
export 'package:impaktfull_ui/impaktfull_ui.dart';
export 'package:injectable/injectable.dart' hide test;
export 'package:flutter_secure_storage/flutter_secure_storage.dart';
export 'package:flutter_svg/flutter_svg.dart';
export 'package:package_info_plus/package_info_plus.dart';
export 'package:path/path.dart';
export 'package:path_provider/path_provider.dart';
export 'package:provider/provider.dart';
export 'package:snacky/snacky.dart';
export 'package:shared_preferences/shared_preferences.dart';
Expand Down
3 changes: 2 additions & 1 deletion lib/src/model/data/error/localized_error.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ mixin BaseLocalizedModel<Localization> {
String? getTranslatedError(Localization localization);
}

abstract class BaseLocalizedError<Localization> extends Error implements BaseLocalizedModel<Localization> {
abstract class BaseLocalizedError<Localization> extends Error
implements BaseLocalizedModel<Localization> {
@override
String? getTranslatedError(Localization localization) => null;
}
Expand Down
79 changes: 0 additions & 79 deletions lib/src/widget/auto_layout/auto_layout.dart

This file was deleted.

21 changes: 0 additions & 21 deletions lib/src/widget/interaction/interaction_feedback.dart

This file was deleted.

3 changes: 3 additions & 0 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,14 @@ dependencies:
dio: ^5.4.0
gap: ^3.0.1
get_it: ^7.6.4
impaktfull_ui: ^0.0.19
injectable: ^2.3.2
flutter_secure_storage: ^9.0.0
flutter_svg: ^2.0.9
path: ^1.8.3
provider: ^6.1.1
package_info_plus: ^5.0.1
path_provider: ^2.1.2
shared_preferences: ^2.2.2
snacky: ^0.0.5
sprintf: ^7.0.0
Expand Down

0 comments on commit 9cbf78c

Please sign in to comment.