Tiago_nes
Tiago_nes

Reputation: 933

Apply title under action icon toolbarAndroid React Native

Hi i'm new in react native so i don't now if it is possible. I want a toolbarAndroid but i want the title of the actions to show under them instead of default next to them. Also even when the title shows next to the icon it will only show up if there is space for it.

My Toolbar

<ToolbarAndroid
      style={styles.toolbar}
      logo={logo}
      actions={[
        {
          title: 'Main', icon: mainIcon, show: 'always', showWithText: true
        },
        ...

The style

const styles = StyleSheet.create({
  toolbar: {
    backgroundColor: 'grey',
    height: 50
},
...

How it is and how i want it to be

Upvotes: 1

Views: 288

Answers (1)

Tiago_nes
Tiago_nes

Reputation: 933

My best solution until now is editing the icons adding each text to each icon

Upvotes: 0

Related Questions