-
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?
Changes from 5 commits
0436d3b
9a647ff
cc2b2c7
0df3a55
72c93b0
cdaa516
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
import RootImageBackground from '@/components/RootImageBackground' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 commentThe 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 commentThe 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/ |
||
|
||
import WelcomeRootImageBackground from '@/components/welcome/WelcomRootImageBackground' | ||
import { useAuth } from '@/hooks' | ||
import { Redirect, Slot } from 'expo-router' | ||
import React from 'react' | ||
|
@@ -18,11 +19,11 @@ export const WelcomeLayout = () => { | |
} | ||
|
||
return ( | ||
<RootImageBackground> | ||
<WelcomeRootImageBackground> | ||
<View className='flex-1'> | ||
<Slot /> | ||
</View> | ||
</RootImageBackground> | ||
</WelcomeRootImageBackground> | ||
) | ||
} | ||
|
||
|
|
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.
expo/expo#26962