Fluxy

Master Feature Catalog

Complete exhaustive encyclopedia of every Fluxy feature, component, and utility.

Fluxy Master Feature Catalog

This is the Ultimate Index of Fluxy. Every single tool in the framework is listed here with its purpose and where to find detailed documentation.

Searching for Flutter equivalents? If you are looking for things like Container, Stack, or Provider, check out the Flutter to Fluxy Dictionary for a quick syntax mapping.


1. State & Reactivity (Fluxy Core)

The fundamental building blocks for your application's logic.

FeatureTypePurposeDocumentation
flux(initial)SignalDefine a reactive state unit.State Basics
persist: trueModifierAutomatically save/load signal state to storage.Persistence
computed(() => ...)SignalDerived state that cached and updates automatically.Reactivity
FluxEffect(() => ...)EffectRun side-effects (logging, API calls) when state changes.Effects
batch(() => ...)UtilityGroup multiple state updates into one UI frame.Performance
fluxSelector(obj, key)SignalObserve a specific property of a complex object.Selectors
fluxWorker(() => ...)UtilityRun heavy logic in background micro-tasks.Workers
fluxField(label)SignalSpecialized signal for form inputs with validation.Forms
fluxList([])CollectionReactive list with specialized update methods.Advanced Control
fluxHistory(val)CollectionState with built-in Undo/Redo capability.Advanced Control
.tr / .trText()SignalReactive internationalization extension.i18n Guide

2. UI & Styling (The Fx DSL)

The chainable modifiers and premium components for the visual layer of your app.

FeaturePurposeDocumentation
Fx.text("...")Semantic typography with .bold(), .h1(), .muted().Typography
Fx.box()Flexible container with .bg(), .rounded(), .shadow().Containers
Fx.col() / Fx.row()Layout flexboxes with .gap() and .align().Flex Layout
Fx.layout()Multi-device switcher (Mobile/Tablet/Desktop).Responsive
Fx.reveal()Staggered entrance animations for content.Animations
Fx.badge()Standard reactive notification badge.Components
Fx.icon()Simplified icon handler with reactive color/size.Icons
Fx.loader()Global industrial loading indicators.Feedback
Fx.toastsuccess(), error(), info() global alerts.Feedback
Fx.field()Self-binding input field (No controllers needed).Forms

3. Industrial Hardening (Stability Suite)

Professional tools for mission-critical production stability.

FeatureKeyPurposeDocumentation
Kill-SwitchFx.feature()Remotely disable broken features.Hardening Guide
ObservabilityFluxyObservabilityAudit signal churn and frame budgets.Hardening Guide
Graceful SleepFluxyResourceBattery-saving hardware management.Hardening Guide
Airbag SystemFluxyErrorBoundaryCatch crashes and perform self-healing.Hardening Guide
Secure VaultFluxyVaultLevel-2 XOR scrambled encryption.Hardening Guide
SnapshotsDevToolsCapture and restore global state in one click.DevTools Guide

4. Debug & Inspection (Developer Experience)

Tools to accelerate local development and architectural audits.

FeatureTypePurposeDocumentation
Fluxy.debug()UtilityEnable the floating inspector panel.DevTools Guide
FluxyDebugWidgetWrap specific parts of the app for localized inspection.DevTools Guide
FluxyDevToolsEngineThe core premium inspection layer.DevTools Guide

4. Modular Ecosystem (Plugins)

Advanced modules you can add as your app grows.

ModulePurposeDocumentation
fluxy_authSession, Token Rotation, MFA.Auth Docs
fluxy_geoBackground GPS & Geofencing.Geo Docs
fluxy_syncOffline-First Data Sync.Sync Docs
fluxy_websocketReal-time streams.WS Docs
fluxy_presenceUser Online/Offline status.Presence
fluxy_hapticsSensory tactile feedback.Haptics
fluxy_deviceHardware & App Meta info.Device
fluxy_loggerSemantic audit trails.Logger
fluxy_biometricFaceID / Fingerprint.Biometric

5. Global Registry & DI

How to manage the lifecycle of your application.

UtilityPurpose
Fluxy.init()Bootstraps the framework in main.dart.
Fluxy.register(T)Register a Controller/Plugin to the global scope.
Fluxy.use<T>()Retrieve a registered module from anywhere.
Fluxy.autoRegister()Scans the app for standard Fluxy modules.
Fx.platformUnified access to all connected platform plugins.
fluxy cloudCLI Engine

Other Resources

On this page