Update App UI - #75
Open
cjstyles6 wants to merge 1 commit into
Open
Conversation
… icon; update dependencies in pubspec.lock
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Updates the app’s UI by introducing a new background color constant and adding a menu icon to the main screen, alongside refreshed Flutter/Dart dependency lock entries.
Changes:
- Added a new background color constant in
lib/constants.dart - Updated
MainScreenlayout to include a menu icon - Updated dependency versions and SDK constraints in
pubspec.lock
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| pubspec.lock | Refreshes locked dependency versions and updates recorded Dart SDK constraint |
| lib/screens/main/main_screen.dart | Adds a menu icon into the main screen widget layout |
| lib/constants.dart | Introduces a new background-related color constant |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| const primaryColor = Color(0xFF2697FF); | ||
| const secondaryColor = Color(0xFF2A2D3E); | ||
| const bgColor = Color(0xFF212332); | ||
| const bgSeconday = Colors.blueGrey; |
| // and it takes 1/6 part of the screen | ||
| child: SideMenu(), | ||
| ), | ||
| const Icon(Icons.menu), |
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.
Add bgSeconday color constant and update main screen layout with menu icon; update dependencies in pubspec.lock