Add Reflux state management and cross-platform demo#13
Merged
MelbourneDeveloper merged 33 commits intomainfrom Dec 11, 2025
Merged
Add Reflux state management and cross-platform demo#13MelbourneDeveloper merged 33 commits intomainfrom
MelbourneDeveloper merged 33 commits intomainfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
TLDR;
New
refluxpackage for Redux-style state management + demo showing shared state between Flutter and React web.What Does This Do?
reflux: Redux-inspired state management using Dart's sealed classes for type-safe action handlingreflux_demo: Counter app demonstrating shared state logic between Flutter and React webmarkdown_editor: Example web app showcasingdart_node_reactcapabilitiesdart_node_reactwith improved hooks and JSX DSLdart_node_wswith proper test infrastructureBrief Details
New Packages:
reflux: Store, reducers, middleware, selectors with full pattern matching on sealed action classesexamples/reflux_demo/counter_state: Shared state logic (actions, reducer, selectors)examples/reflux_demo/flutter_counter: Flutter app consuming shared stateexamples/reflux_demo/web_counter: React web app consuming same shared stateexamples/markdown_editor: Full-featured markdown editor with live previewKey improvements:
createSelector1/2/3How Do The Tests Prove The Change Works?
reflux: Full test coverage for store, middleware, selectors, enhancers, composeflutter_counter: Widget tests with golden image comparisonsweb_counter: Browser-based UI integration testsmarkdown_editor: Browser-based component testsdart_node_react: Split monolithic test file into focused test modules