Skip to content
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

Map View Event #31

Open
wants to merge 30 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
9288522
added basic components. Waiting on event list and activity card compo…
EvanSeven007 Oct 28, 2023
b69b072
commit before merge
EvanSeven007 Nov 11, 2023
cc8267f
commit before merge
EvanSeven007 Nov 11, 2023
bcf096d
commit before merge
EvanSeven007 Nov 11, 2023
a37fc55
merge
EvanSeven007 Nov 11, 2023
e8e2413
added some CSS for Profile Page. Changed event schema to match mongo …
EvanSeven007 Jan 20, 2024
317011a
added some more CSS
EvanSeven007 Jan 20, 2024
19a7274
some changes
Jan 20, 2024
07473e3
slight style changes
Jan 20, 2024
70abb7a
add some more CSS to activity component to match figma
EvanSeven007 Jan 22, 2024
858d183
merge into activity card
EvanSeven007 Jan 22, 2024
ad782a7
add activity card
EvanSeven007 Jan 22, 2024
0def41a
commit
Jan 27, 2024
bb39314
commit
Jan 27, 2024
38837eb
Change styles to match better
trietmchau Jan 27, 2024
9673fb1
Match style to design
trietmchau Jan 27, 2024
8cc5f62
Add redesigned eventList into page
trietmchau Jan 27, 2024
a37022a
Add map and search nagivation
trietmchau Feb 11, 2024
6f3ea5d
Add search bar
trietmchau Feb 11, 2024
12adcf5
Add navigation tabs
trietmchau Feb 11, 2024
dfeba1b
Add custom marker to map
trietmchau Feb 11, 2024
f2e58d3
rm
trietmchau Feb 13, 2024
a43243d
Add ability to default map to user location
trietmchau Feb 17, 2024
09a9578
Refactor code to adjust component height easier from App.tsx
trietmchau Feb 17, 2024
dbd7f31
Create structure for event card
trietmchau Feb 19, 2024
a4be215
Complete event card
trietmchau Feb 19, 2024
d534265
Add back btn
trietmchau Feb 19, 2024
f542c29
Link event to marker
trietmchau Feb 24, 2024
84e053f
Add navigation between different screens
trietmchau Mar 2, 2024
c3e6d27
Finish linking screens together
trietmchau Apr 13, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
slight style changes
fernando committed Jan 20, 2024
commit 07473e3ccfd1cf0e4055e59dbb05f49e18c1e239
1 change: 1 addition & 0 deletions app/App.tsx
Original file line number Diff line number Diff line change
@@ -23,6 +23,7 @@ const styles = StyleSheet.create({
backgroundColor: "#F5F7FD",
alignItems: "center",
justifyContent: "center",
padding: 10
},
});

3 changes: 2 additions & 1 deletion app/components/event/EventList.tsx
Original file line number Diff line number Diff line change
@@ -52,7 +52,8 @@ const EventList = (props: { eventList: EventData[] }) => {
const styles = StyleSheet.create({
text: {
flex: 1,
marginLeft: 10
marginLeft: 15,
fontWeight: "600"
},
})