-
Notifications
You must be signed in to change notification settings - Fork 18
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
Feature/library reservations #1073
base: develop
Are you sure you want to change the base?
Conversation
…ect-schrodinger into feature/library-rooms
…o feature/library-reservations
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## develop #1073 +/- ##
========================================
- Coverage 16% 16% -0%
========================================
Files 227 236 +9
Lines 6862 7083 +221
========================================
+ Hits 1073 1084 +11
- Misses 5789 5999 +210 |
uni/lib/controller/local_storage/database/app_library_reservation.dart
Outdated
Show resolved
Hide resolved
); | ||
} | ||
late TabController tabController; | ||
late List<Tab> tabs; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why does this need to be late?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Both depend on the context so i initialize them on getBody()
boxShadow: const [ | ||
BoxShadow( | ||
color: Color.fromARGB(0x1c, 0, 0, 0), | ||
blurRadius: 7, | ||
offset: Offset(0, 1), | ||
), | ||
], | ||
), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need to do this manually? Can't we use the GenericCard
widget?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That code is already on develop
. I just changed the file. Maybe it's better to handle this in a separate issue.
417c250
to
bd61b50
Compare
There should only be one library card in the aggregate page, IMO. |
This is a good topic of discussion. I think it's best to keep as is for this release and reiterate on this idea from a UI standpoint. |
Let's drop this for this release, then. |
Duplicate of #658
Fetch and display reserved rooms.
At the time these changes were merged into
feature/library-reservations
. This should probably be reviewed again though.