-
Notifications
You must be signed in to change notification settings - Fork 24.8k
Closed
Labels
Issue: Author Provided ReproThis issue can be reproduced in Snack or an attached project.This issue can be reproduced in Snack or an attached project.Resolution: LockedThis issue was locked by the bot.This issue was locked by the bot.
Description
Is this a bug report?
yes
Have you read the Contributing Guidelines?
no
Environment
Steps to Reproduce
- Create new react native app
- Make statusbar translucent
<View style={styles.container}>
<StatusBar
translucent
backgroundColor='transparent'
/>
- Add deep link to androidManifest.xml
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="testapp" android:host="testapp" />
</intent-filter>
- Make on press handler to handle deep linking
<Text onPress={() => Linking.openURL('testapp://testapp')} style={styles.welcome}>
Welcome to React Native!
</Text>
- Press that text
Expected Behavior
Android statusbar will stay translucent
Actual Behavior
Android statusbar not translucent anymore
Reproducible Demo
Metadata
Metadata
Assignees
Labels
Issue: Author Provided ReproThis issue can be reproduced in Snack or an attached project.This issue can be reproduced in Snack or an attached project.Resolution: LockedThis issue was locked by the bot.This issue was locked by the bot.