Revert "Use ScreenShell directly instead of useTopInset boolean"

This reverts commit 203e36eb67.
This commit is contained in:
Johannes Klein
2026-06-08 19:18:07 +02:00
parent 7c550c56e6
commit 42e61a376e

View File

@@ -5,8 +5,8 @@ import {
Heading4,
INatIcon,
INatIconButton,
ViewWrapper,
} from "components/SharedComponents";
import { ScreenShell } from "components/SharedComponents/ViewWrapper";
import { ImageBackground } from "components/styledComponents";
import INatLogo from "images/svg/inat_logo_onboarding.svg";
import OnBoardingIcon2 from "images/svg/onboarding_icon_2.svg";
@@ -203,7 +203,7 @@ const OnboardingCarousel = ( ) => {
}
return (
<ScreenShell wrapperClassName="bg-black">
<ViewWrapper wrapperClassName="bg-black" useTopInset={false}>
<StatusBar barStyle="light-content" />
<View
className="w-full h-full relative"
@@ -356,7 +356,7 @@ const OnboardingCarousel = ( ) => {
</View>
</View>
</View>
</ScreenShell>
</ViewWrapper>
);
};