Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
206 views
in Technique[技术] by (71.8m points)

javascript - How can I style bottom section of screen In REACT NATIVE where minimize, home and back buttons are placed?

bottom section screen

I want to style the section in the image above, of my App to look exactly like the rest of the screen of my App but couldn't find how to do that, can anyone help me out, please?

e.g: giving it backgroundColor of #fff and color of #222 So that my app screen looks the same from top to bottom.

Thanks as you help me out!! ????

PS: I styled statusBar with built-in React Native API but couldn't find that of the bottom section.

question from:https://stackoverflow.com/questions/65645273/how-can-i-style-bottom-section-of-screen-in-react-native-where-minimize-home-an

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

After some research, I found out that it can be achieved by configuring app.json in the root folder of the project.


"androidNavigationBar": {
   "barStyle": "dark-content",
   "backgroundColor": "#ffffff"
}

Full options and documentation can be found here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...