You are working on a Flutter project using MobX for state management. Currently:
SignInController
is the source of truth and exposes observable states and actions toSignInPage
.SignInPage
binds directly to MobX's@observable
,@computed
, and@action
annotations for its UI updates and logic.