### Name variations, 1:1 conversation Note the five items in gear menu, and the second-level menu with disappearing messages options. Disappearing message set to 'off'. #### With name and profile, verified ```jsx console.log('onSetDisappearingMessages', seconds) } onDeleteMessages={() => console.log('onDeleteMessages')} onResetSession={() => console.log('onResetSession')} onShowSafetyNumber={() => console.log('onShowSafetyNumber')} onShowAllMedia={() => console.log('onShowAllMedia')} onShowGroupMembers={() => console.log('onShowGroupMembers')} onGoBack={() => console.log('onGoBack')} /> ``` #### With name, not verified, no avatar ```jsx ``` #### Profile, no name ```jsx ``` #### No name, no profile, no color ```jsx ``` ### With back button ```jsx ``` ### Disappearing messages set ```jsx console.log('onSetDisappearingMessages', seconds) } onDeleteMessages={() => console.log('onDeleteMessages')} onResetSession={() => console.log('onResetSession')} onShowSafetyNumber={() => console.log('onShowSafetyNumber')} onShowAllMedia={() => console.log('onShowAllMedia')} onShowGroupMembers={() => console.log('onShowGroupMembers')} onGoBack={() => console.log('onGoBack')} /> ``` ### In a group Note that the menu should includes 'Show Members' instead of 'Show Safety Number' ```jsx console.log('onSetDisappearingMessages', seconds) } onDeleteMessages={() => console.log('onDeleteMessages')} onResetSession={() => console.log('onResetSession')} onShowSafetyNumber={() => console.log('onShowSafetyNumber')} onShowAllMedia={() => console.log('onShowAllMedia')} onShowGroupMembers={() => console.log('onShowGroupMembers')} onGoBack={() => console.log('onGoBack')} /> ``` ### In chat with yourself Note that the menu should not have a 'Show Safety Number' entry. ```jsx ```