React-native-gifted-chat: Customize MessageText help

Created on 2 Aug 2016  路  7Comments  路  Source: FaridSafi/react-native-gifted-chat

I have been trying to change the font and color of the message's text. Here is my renderMessageText function.

  renderMessageText(props) {
    return (
      <MessageText textStyle={{fontSize: 18, fontWeight: 'bold', fontFamily: 'AvenirNext-Regular', color: 'lightgray'}} linkStyle={{fontSize: 18, color: 'green'}} />
    )
  },

It just has not been working. Am I missing something? Thanks.

Most helpful comment

0.0.3 contains a fix for ignored custom MessageText

Your code should now looks like

    renderMessageText(props) {
      const textStyle = {
        fontSize: 18, fontWeight: 'bold', fontFamily: 'AvenirNext-Regular', color: 'lightgray',
      };
      const linkStyle = {fontSize: 18, color: 'green'};
      return (
        <MessageText textStyle={{left: textStyle, right: textStyle}} linkStyle={{left: linkStyle, right: linkStyle}} {...props} />
      )
    },

Left and Right are for Received and Sent messages styles

All 7 comments

I will publish a fix in few minutes

Wow nice thanks.

please test with 0.0.3

Tested if I keep my code the same. I get bubbles without text. But if I add {...props} I get the text back but no style change.

0.0.3 contains a fix for ignored custom MessageText

Your code should now looks like

    renderMessageText(props) {
      const textStyle = {
        fontSize: 18, fontWeight: 'bold', fontFamily: 'AvenirNext-Regular', color: 'lightgray',
      };
      const linkStyle = {fontSize: 18, color: 'green'};
      return (
        <MessageText textStyle={{left: textStyle, right: textStyle}} linkStyle={{left: linkStyle, right: linkStyle}} {...props} />
      )
    },

Left and Right are for Received and Sent messages styles

That worked.

@FaridSafi ... Sorry this still gives me MessageText is undefined ...

Was this page helpful?
0 / 5 - 0 ratings

Related issues

redwind picture redwind  路  3Comments

yogiben picture yogiben  路  3Comments

iamdurui picture iamdurui  路  3Comments

maharjanaman picture maharjanaman  路  3Comments

Hayko1994 picture Hayko1994  路  3Comments