Fluxy

The Full-Stack Flutter Platform

Fluxy unifies Fluxy State System, atomic styling, and robust networking into a single, cohesive engine.

The Full-Stack SDK for Flutter v1.2.1

Fluxy is a production-grade Managed Application Platform that replaces the "glue code" in your Flutter apps. It unifies specific tooling for State, DI, Networking, and UI into one cohesive engine with an Elite UI system (v1.2.1).

What's New in v1.2.1

  • Elite UI & Motion System: Full-width glass docks and neon light trail animations
  • FxMeshGradient: Ultra-modern fluid background movement
  • FxAnimatedBorder: Glowing perimeter light trails for elite containers
  • FxGooey & FxSpotlight: Physical liquid merge and cinematic mask reveals
  • Industrial Engine Enhancements: Safe expansion and alignment improvements

Why Fluxy?

Elite Ecosystem (v1.2.1)

Fluxy v1.2.1 introduces the Elite UI standard. Install the core and animations for the full experience:

Core & Elite UI

dependencies:
  fluxy: ^1.2.1
  fluxy_animations: ^1.2.1

Platform Modules (Industrial Standard)

dependencies:
  fluxy_auth: ^1.1.0                # Stable Authentication
  fluxy_storage: ^1.1.0              # High-performance persistence
  fluxy_camera: ^1.1.0              # Managed device hardware access
  fluxy_notifications: ^1.1.0        # Push & Local alerts
  fluxy_biometric: ^1.1.0           # Face ID / Fingerprint
  fluxy_permissions: ^1.1.0         # Manifest & System access
  fluxy_connectivity: ^1.1.0        # Network monitoring & queues
  fluxy_analytics: ^1.1.0           # Event tracking & Identity
  fluxy_ota: ^1.1.0                 # Over-the-air updates
  fluxy_haptics: ^1.1.0             # Sensory tactile feedback
  fluxy_logger: ^1.1.0              # Industrial audit trails
  fluxy_device: ^1.1.0              # Environment & Hardware info

Version History

v1.2.1 (Current)

  • Elite UI System: High-end full-width glass bottom bar and dock navigation.
  • Elite Animation Primitives: Added FxMeshGradient, FxAnimatedBorder, FxSpotlight, etc.
  • Stacked Visibility: Automatic redistribution of bottom bar items for maximum clarity.

v1.2.0

  • Industrial Engine Enhancements: Context-aware flex safety and alignment improvements
  • Reactivity Tracker: Debug-time diagnostic system for signal-based state management
  • Hot-Reload Routing: Dynamic route provider for instant developer updates
  • Smart Alignment Inference: Automatic child centering in box-based layouts

v1.1.0

  • Fluxy Stability Kernel™: Industrial-grade crash-prevention and layout auto-repair
  • X-Ray Observability: Real-time signal churn and rebuild audit engine
  • Managed Resource Manager: Automated lifecycle for hardware features
  • Level-2 Security Vault: Secondary encryption for mission-critical secrets
  • New Real-Time Modules: Sync, WebSocket, Presence, and Geofencing support

v1.0.1

  • Enhanced Fluxy State System: Advanced reactive patterns with improved performance
  • Ultra-lean Core: Further optimized package size and startup time
  • Enhanced Modular Architecture: Better package management and dependency resolution
  • Professional Features: Enhanced logging and guardrails

v1.0.0

  • Fluxy State System: Enterprise-grade reactive state management
  • Modular Architecture: Core package (172KB) + optional modules
  • Professional Features: fluxSelector, fluxWorker, automatic state hydration

v0.2.x Series

  • v0.2.6: Industrial Log Professionalization & Semantic Tags
  • v0.2.5: The Platform Era & Auto-Registration
  • v0.2.4: Layout Stability, Slivers & Alerts
  • v0.2.3: Premium UI DevTools Overhaul
  • v0.2.2: Stability & Context Refinements
  • v0.2.1: Live Editing & Inspector Search
  • v0.2.0: Major Architecture & Scoped DI

v0.1.x Series

  • v0.1.11: Route Injection & Font DSL
  • v0.1.10: Typography System Update
  • v0.1.9: Application Platform
  • v0.1.8: Fluxy State System (Enterprise Features)
  • v0.1.7: Visual FX Update
  • v0.1.6: Stability Release

Benefits

  • Faster Installation: Highly optimized core compared to monolithic frameworks
  • Flexible Dependencies: Add only features you use
  • Independent Versioning: Each module can evolve separately
  • Clear Architecture: Separated concerns for better maintainability

Experience the Difference.

Fluxy removes the friction of stitching together 10+ different packages.

Standard Flutter
// 30 Lines for a Button
Container(
  height: 48,
  decoration: BoxDecoration(
    color: Colors.blue,
    borderRadius: BorderRadius.circular(8),
    boxShadow: [
      BoxShadow(
        color: Colors.black12, 
        blurRadius: 4
      )
    ],
  ),
  child: Material(
    color: Colors.transparent,
    child: InkWell(
      onTap: () {},
      child: Center(
        child: Text(
          "Submit", 
          style: TextStyle(
            color: Colors.white, 
            fontWeight: FontWeight.bold
          )
        ),
      ),
    ),
  ),
)
Fluxy DSL
// 5 Lines. Same Result.
Fx.text("Submit")
  .bold()
  .whiteText()
  .center()
  .box
  .h(48)
  .bg(Colors.blue)
  .rounded(8)
  .shadow.md
  .onTap(() {})

Architecture that Scales

Fluxy enforces a clean, consistent structure for your team.

  • Controllers: Logic lives outside the UI.
  • Services: Global singletons for data.
  • Repositories: Standardized data access.
class UserController extends FluxController {
  final user = flux<User?>(null);
  
  void login() async {
    user.value = await api.login();
  }
}

Join the Community

Fluxy is built for developers who want to ship faster without sacrificing quality.

On this page