• 5426
  • More

Mobile App - how to change color header and footer

These bars are part of react-native, so you need to customize it in mobile apps source code App.js file.Change this code:

  renderToolbar () {

             return (

                 

to

  renderToolbar () {

             return (

               

yourcolor'}}>Similar approach should work for footer. Also you can add style classand change more design styles, refer to documentation on how to add style sheets

Credit to :  Alex T  

💓 2
Replies (6)
    Login or Join to comment.