Conversation
…xible components Introduce Material Design 3 breakpoint system (compact/medium/expanded) and three new server-driven layout components: responsive, expanded, and flexible — enabling adaptive layouts driven entirely from JSON contracts. Made-with: Cursor
New interactive components registered in the parser and validator: - dropdown: form selector with label, hint, filled and options list - tabBar: tabbed content with configurable indicator and label colors - carousel: horizontal PageView with animated dot indicators Includes a new_components.json showcase screen linked from home and the playground screen selector. Made-with: Cursor
Three transition styles replace the default MaterialPageRoute: - FadePageRoute for the landing page (crossfade) - SlideUpPageRoute for the playground (slide-up + fade) - SlideHorizontalPageRoute for screen-to-screen navigation (iOS-style slide) All use easeOutCubic curves for a polished, 350ms feel. Made-with: Cursor
Rewrite JsonEditorPanel with VS Code dark-theme inspired colors: - Keys in blue, strings in orange, numbers in green, booleans in keyword blue - Single-pass regex tokenizer for real-time highlighting - Line number gutter with separator - Transparent TextField overlay preserves native cursor and selection UX Made-with: Cursor
Four-job pipeline triggered on push/PR to main: - Analyze: dart analyze --fatal-infos - Test: flutter test --coverage - Build Web: flutter build web --release + artifact upload - Build Android: flutter build apk --release (push-only) + artifact upload Includes Flutter SDK caching and concurrency control. Made-with: Cursor
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
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.
Summary
responsive,expandedandflexibleserver-driven components for adaptive layoutsdropdown(form selector),tabBar(tabbed content),carousel(PageView with dot indicators) — all driven from JSON contractsNew files
lib/core/layout/breakpoints.dart,server_responsive.dart,server_expanded.dartlib/core/navigation/page_transitions.dartserver_dropdown.dart,server_tab_bar.dart,server_carousel.dart,new_components.jsonjson_syntax_highlighter.dart,json_editor_panel.dart(rewritten).github/workflows/ci.ymlTest plan
flutter analyze lib/— 0 issuesflutter test— 111 tests passingnew_componentsscreen and interact with dropdown, tabs, carousel