-
Notifications
You must be signed in to change notification settings - Fork 1
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
feat: observations list as a tab #309
Conversation
…nto feat/save-track
…eet modal, and fixed padding in discription input
export enum TabName { | ||
Map = 'Map', | ||
Camera = 'Camera', | ||
Tracking = 'Tracking', | ||
} | ||
export type TabName = keyof HomeTabsList; |
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.
I replaced this enum
with a type
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.
Changes look generally good. Couple of questions:
-
How do we get to the settings screen now that the button has been removed from the ObservationsList screen?
-
Couple of small issues with the tab icon (i'm okay with them being addressed in a follow-up):
- the highlighting when active looks off. guessing that's an issue with the asset and will need to replace it.
- size is a little bigger than the other tab icons
src/frontend/screens/ObservationsList/ObservationListHeader.tsx
Outdated
Show resolved
Hide resolved
src/frontend/screens/ObservationsList/ObservationListHeader.tsx
Outdated
Show resolved
Hide resolved
src/frontend/screens/ObservationsList/ObservationListHeader.tsx
Outdated
Show resolved
Hide resolved
For posterity, the next PR I will be working on introduces the setting drawer which will replace the settings screen. |
Adds observation list as tab in the home screen.
closes #307