Atlas Theme: Disable back button text

0
Hi,   I want to disable / hide the back button text in the Native App layouts. Only the back button image should be shown.   It this possible, if yes: how can I do this? In the JS files I didn't find any option.
asked
2 answers
1

Put this somewhere in your native styling JS:

 

export const Layout = {

    header: {

        backButtonText: {

            // Do not show back button captions

            width: 0

        },

    },

};

answered
0

Hi Roberto,

 

Thanks for your reply.

Where can I do this? 

 

It’s about the following text (green line).

IMG_2365.jpeg

answered