Walkthrough elements shifted on Android
Dear jasongaare,
thank you very much for providing that wonderful walkthrough that I am currently using in my app for a user onboarding. Everything works very nicely on IOS. However, I do encounter problems when trying the app on my android device (Pixel 3) with Expo. Every child element in the walkthrough is shifted about 40px to the bottom of the original element (see Screenshot) Is there any way to fix this?
"react-native": "0.64.3" "expo": "^44.0.0" "expo-app-loading": "~1.3.0" "expo-application": "~4.0.1" expo-cli 6.0.2
Thank you very much for your support!
Best regards

Jeanine
I'm also having this problem
@jkrath Its been a while so you probably don't need this anymore, but I fixed this issue by adding the following to my walkthrough guide steps:
tooltipProps: {
topAdjustment: Platform.OS === 'android' ? -(StatusBar.currentHeight ?? 0) : 0
}