React-Native: Android Window Fullscreen

R AdySurya A
1 min readJul 17, 2018

--

> UPDATED: react-native have been update many times & I’m not sure this WORKING correctly.

Hello, this is a just simple configuration to set Full-Screen android window in React-Native Mobile Apps.

  • Open your React-Native project
  • Open your styles.xml in react-native-project/android/src/main/res/values/styles.xml
  • add this line inside <style> tag.
<item name="android:windowFullscreen">true</item>
  • save styles.xml & run your application

Example

Example Main/Home Layout
Example: Detail/Child Component

Thank you very much.

--

--