-
-
Notifications
You must be signed in to change notification settings - Fork 466
fix: code editor tool bar #933
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
WalkthroughPropagates colorSeed with primary color in dynamic theming; adjusts color preview and save behavior in settings. Removes AppState provider and generated artifacts. Introduces ConnectionStatsPage.route and updates navigation to use it. Removes backup password prompt from settings page. Updates dependencies: adds flutter_gbk2utf8, get_it; bumps fl_lib override. Changes
Sequence Diagram(s)sequenceDiagram
actor U as User
participant TB as ServerTopBar
participant Route as ConnectionStatsPage.route
participant Router as App Router
participant Page as ConnectionStatsPage
U->>TB: Tap connection count (non-mobile)
TB->>Route: go(context)
Route->>Router: Navigate to /server/conn_stats
Router->>Page: Build and show
Note over Page: Displays connection statistics
sequenceDiagram
actor U as User
participant Settings as App Color Settings
participant Theme as _buildDynamicColor
participant UI as UIs
U->>Settings: Choose light/dark theme & color
Settings->>Theme: Apply selection
Theme->>UI: Set primaryColor and colorSeed
Note over UI: colorSeed kept in sync with primary
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~25 minutes Poem
Pre-merge checks and finishing touches❌ Failed checks (3 warnings)
✅ Passed checks (2 passed)
✨ Finishing touches🧪 Generate unit tests (beta)
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (12)
💤 Files with no reviewable changes (4)
🧰 Additional context used📓 Path-based instructions (3)lib/view/**/*.dart📄 CodeRabbit inference engine (CLAUDE.md)
Files:
pubspec.yaml📄 CodeRabbit inference engine (CLAUDE.md)
Files:
lib/data/provider/**/*.dart📄 CodeRabbit inference engine (CLAUDE.md)
Files:
🧠 Learnings (1)📚 Learning: 2025-10-08T09:36:41.671ZApplied to files:
🧬 Code graph analysis (1)lib/app.dart (1)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
🔇 Additional comments (11)
Comment |
Fixes #806
Summary by CodeRabbit
New Features
Changes
Removed
Chores