1

I am struggling to understand how I can change the font-family, font-size, bold, etc for the Tab component.

Can someone point me in the right direction

Many thanks

Stephen (SquareHat)

p.s. I could not find the tag ui-kitten as suggested on the web-page

RepellantCoder
  • 141
  • 1
  • 4

1 Answers1

1

If you want to edit the text on the Tab component, you should pass a own Text component to the title property like this

<Tab title={evaProps => <Text {...evaProps} style={{color: 'blue'}}>USERS</Text>}>

On that text, you can use the style that you want!

Ayoze Barrera
  • 126
  • 2
  • 9