getxify 1.0.0
getxify: ^1.0.0 copied to clipboard
An improved and enhanced version of GetX - Open screens/snackbars/dialogs without context, manage states and inject dependencies easily with GetXify.
1.0.0 #
Initial Release - GetXify #
GetXify is an improved and enhanced version of GetX, compatible with the latest Dart and Flutter versions.
Breaking Changes #
- Removed GetConnect module - HTTP/WebSocket communication module has been removed
- Removed mini stream - Stream-related utilities have been removed
- Removed all deprecated methods - Cleaned up all deprecated APIs from the original GetX
Improvements #
- Updated to support Dart SDK ^3.12.2
- Updated to support Flutter >=3.44.2
- Code cleanup and modernization
- Removed legacy dependencies and unused code
- Improved performance and stability
Migration from GetX #
If you were using GetX and want to migrate to GetXify:
- Replace
import 'package:get/get.dart';withimport 'package:getxify/getxify.dart'; - Replace
getdependency withgetxifyin pubspec.yaml - If you were using GetConnect, you'll need to implement your own HTTP client using dio or http package
- If you were using mini stream utilities, migrate to standard Dart streams or RxDart
- All deprecated methods have been removed, so update your code to use the current APIs
Features #
GetXify maintains all the core features of GetX:
- State Management (Reactive and Simple)
- Route Management (Navigation without context)
- Dependency Management (Dependency injection)
- Internationalization (i18n)
- Theme Management
- Utils and Helpers