Advanced GetX Patterns
Installation
SKILL.md
Advanced GetX Patterns
Advanced GetX patterns for building sophisticated reactive applications with proper state management, dependency injection, and network communication.
Workers - Reactive Side Effects
Workers allow you to execute callbacks when observable values change.
ever - Execute on Every Change
class UserController extends GetxController {
final user = Rx<User?>(null);
final isAuthenticated = false.obs;
void onInit() {
super.onInit();