icapps_architecture 1.0.0 icapps_architecture: ^1.0.0 copied to clipboard
icapps architecture components for flutter projects. Contains commonly used code for logging, extensions, ...
Changelog #
[0.8.0] - 2022-10-17 #
[0.7.4] - 2022-09-18 #
- Fix terminal colors not resetting after printing a stack trace (this could break hot restart/reload)
[0.7.3] - 2022-09-16 #
- Added getConnectivityResult to the ConnectivityHelper class
[0.7.0] - 2022-05-12 #
[0.6.4] - 2022-02-22 #
Fixed #
- iOS Touchfeedback when 2 TouchFeedbackIOS widgets are on top of eachother
[0.6.1] - 2021-12-14 #
[0.6.0] - 2021-12-02 #
Added #
ComputePool
: A pool of background isolates to dispatch work to. Falls back to microtasks on web
[0.5.0] - 2021-11-12 #
Added #
- Adds more options to the TouchFeedback widget to control the material layer
- Adds a helper framework to save and restore state using the standard restoration framework
- Update libraries
- Required dart 2.14
[0.4.1] - 2021-09-02 #
Added #
- SimpleKeyValueStorage storage added as a generic interface for storing/retrieving strings
- SharedPreferenceStorage updated to implement SimpleKeyValueStorage
[0.3.4] - 2021-05-27 #
Fixed #
- Exclude Inkwel from widget three if onClick is null
- Exclude gesture detector from semantics three if onClick is null
[0.3.2] - 2021-05-19 #
Fixed #
- Made
BaseProviderWidget
andBaseThemeProviderWidget
non-abstract to take advantage of dart 2.13's typedef
[0.3.0] - 2021-04-23 #
BREAKING #
logger
is now an extension property onObject
and will include[$ClassName]
as prefix to log messagesstaticLogger
static getter has replacedlogger
to use in top level functions where we do not have an object to extend from