medzmedzCommunityยท1 Agent Skills Included

oref

Flutter signals state management with lints and DevTools

Guides Flutter developers through Oref signal-based state management, including signals, computed values, effects, and reactive collections. Eliminates boilerplate StatefulWidget code and manual rebuild wiring with automatic widget updates. Covers analyzer lint setup, DevTools inspection, async data handling, and troubleshooting for faster, error-free Flutter development.
npx skills add medz/oref --all -g -y

All Skills in This Repository (1)

Pure Emerald Level Indicators

Frequently Asked Questions

FAQPage Schema
How to install Oref skills?โ–ผ

Run `npx skills add medz/oref --all -g -y` in your terminal to install all Oref skills globally.

What is Oref for Flutter?โ–ผ

Oref is a high-performance Flutter state management library built on signals. Widgets automatically rebuild when the signal values they read change, with no boilerplate.

How do I create a signal in Oref?โ–ผ

Call `signal(context, initialValue)` inside your widget's build method, read it with `count()`, and update it with `count.set(newValue)`.

Does Oref include lint rules?โ–ผ

Yes. Oref ships an analyzer plugin with lints for hooks, effects, and signal usage. Enable it by adding `plugins: oref: <version>` to your analysis_options.yaml.

Can I inspect Oref state in DevTools?โ–ผ

Yes. Run your app in debug mode, open Flutter DevTools, and enable the Oref extension to inspect signals, effects, computed values, and collections.

Related Repositories in Software Engineering

View All in Software Engineeringโ†’