-
Notifications
You must be signed in to change notification settings - Fork 11
Welcome Page Redesign #55
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
base: develop
Are you sure you want to change the base?
Conversation
…aning up text styles for improved readability
The background patterns image is a placeholder and needs to be changed. Will change that once I receive the original one. |
app.json
Outdated
"orientation": "portrait", | ||
"newArchEnabled": true, | ||
"icon": "./src/assets/images/icon.png", | ||
"assetBundlePatterns": [ |
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.
expoBundlePatterns is deprecated, please elaborate.
@@ -1,4 +1,5 @@ | |||
import RootImageBackground from '@/components/RootImageBackground' |
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.
RootImageBackground has two platform specific implementations, a web version and native version (.tsx, .web.tsx), and they are getting replaced with a single version, was this done on purpose?
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.
The RootImageBackground.web.tsx is there but seems to be not used at all in any place.
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.
@Ajmaljalal that's a platform specific extension, have a look here https://docs.expo.dev/router/advanced/platform-specific-modules/
fill: '#08786B' | ||
} | ||
|
||
switch (name) { |
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.
Could you use tailwind centralized color vars instead of hardcoding them?
src/assets/fonts/.keep
Outdated
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 do we need this file/folder?
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.
removed, not needed for now. we can add when we need it, does not have to be before hand.
orange: '#F29B00', | ||
black: '#020202', | ||
}, | ||
fontFamily: { |
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.
Have you discussed the introduction of all these fonts with @waleedkadous?
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 removed the other fonts, the only one left is Exo2, which is the font used in the new design of the welcome page. @waleedkadous what are your thoughts?
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.
The current app background is greyish, is the whole app switching to the light background theme? How do the other pages look at the moment including the actual login and account registration pages?
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 is true, the current design change is only for the welcome page and all other pages including the login and the registration pages looks exactly as before. I am not 100% sure if we want to implement this. It introduces inconsistencies to the general theme of the app.
…s and improved styling consistency
Welcome Page Redesign