fluxy 0.0.6 copy "fluxy: ^0.0.6" to clipboard
fluxy: ^0.0.6 copied to clipboard

A complete Flutter platform unifying reactive state, declarative UI, styling, animation, routing, and tooling. Build production-grade apps faster and at scale.

Fluxy β€” The Full-Stack Flutter Framework #

The "Expo" for Flutter. One Engine. Infinite Possibilities.

Fluxy is a complete development platform that unifies reactive state, declarative UI, cloud builds, OTA updates, and developer tooling into a single cohesive engine.

Pub Version License: MIT


πŸš€ Why Fluxy? #

Fluxy dramatically speeds up Flutter development by providing the missing pieces of the ecosystem right out of the box:

Feature Standard Flutter Fluxy
Development Native compilation required Fluxy Play (Instant Preview)
State Provider / BLoC / Riverpod Signals (Zero Boilerplate)
UI Syntax Nested Trees Fluent Chainable DSL
CI/CD Manual / Codemagic (Paid) Fluxy Cloud (Free GitHub Actions)
Updates App Store Review OTA Server-Driven Updates
Debugging DevTools In-App Signal Inspector

πŸ› οΈ The Tookit #

1. Fluxy CLI #

Scaffold, build, and deploy with a single command.

fluxy init my_app
fluxy run
fluxy cloud build android  # Free cloud build via GitHub Actions

2. Reactive UI & State #

Write less code. Do more.

final count = flux(0);

Fx.column(
  Fx.text(() => "Count: ${count.value}").font(32).bold(),
  Fx.button("Increment", onTap: () => count.value++).bg(Colors.blue).pad(16)
).center();

3. Fluxy Cloud & OTA #

Push updates instantly without waiting for App Store review using our Server-Driven UI engine.

// Load entire screens from the cloud
FxRemoteView(path: 'https://api.myapp.com/home.json');

// Trigger update
Fluxy.update('https://api.myapp.com/manifest.json');

4. Fluxy Play #

Preview your apps on real devices without compiling native code. Just scan a QR code or enter a URL.


πŸ“¦ Installation #

dependencies:
  fluxy: ^0.8.0

⚑ Quick Start #

For a detailed walkthrough, see the Official Guide.

Create a new project #

# Install CLI
dart pub global activate fluxy

# Create App
fluxy init super_app
cd super_app
fluxy run

Debugging #

Disable debug mode in production! Enable the powerful in-app inspector only during development:

void main() {
  FluxyDebug.init();
  runApp(Fluxy.debug(child: MyApp()));
}

πŸ—ΊοΈ Roadmap Status #

  • βœ… Signals & State (Completed)
  • βœ… Fluent DSL (Completed)
  • βœ… Motion Engine (Completed)
  • βœ… CLI Tooling (Completed)
  • βœ… OTA Updates (Completed)
  • βœ… DevTools (Completed)
  • βœ… Cloud Builds (Completed)
  • βœ… Playground App (Completed)

Community & Support #


Build faster. Write cleaner. Scale confidently.

1
likes
0
points
867
downloads

Publisher

unverified uploader

Weekly Downloads

A complete Flutter platform unifying reactive state, declarative UI, styling, animation, routing, and tooling. Build production-grade apps faster and at scale.

Repository (GitHub)
View/report issues

Documentation

Documentation

License

unknown (license)

Dependencies

args, flutter, flutter_secure_storage, path, path_provider, shared_preferences

More

Packages that depend on fluxy