·
Added a discussion

Hi UNA

I want to ask about canceling the Messenger icon in the bottom bar of the mobile application or diverting it to messages, because I do not want to subscribe to Messenger, as it does not require me.

@Andrey Yasko @Alex T⚜️ @Anton L @LeonidS @Mark Purser

Thanks in advance

  • 991
Comments
    • You need to remove the following block in App.js file in mobile app source code:

                  <FooterTab style={styles.footerTab}>
                      <Button vertical onPress={o.onMessengerMenu} badge={o.bubbles['notifications-messenger'] > 0 ? true : false}>
                          {o.bubbles['notifications-messenger'] > 0 && 
                              (<Badge><Text>{o.bubbles['notifications-messenger']}</Text></Badge>)
                          }
                          <Icon style={styles.footerIcon} name="chatbubbles-outline" type="Ionicons" solid />
                      </Button>
                  </FooterTab>
      
        Login or Join to comment.