Skip to content

Font family style broken when using body styling rule and others simultaneously in Android Devices #137

Closed
@CXZ7720

Description

@CXZ7720

When apply custom font using body style rule to apply globally, other rule's fontFamily broken in android device.

I think this is because nested text component styling issue related with facebook/react-native#20398

DebugPrintTree options activated, the example result was like this.

스크린샷 2021-03-16 오전 11 08 31

Because of strong styled component were nested in default text styled component, fontFamily doesn't apply to children component.

[ENV]
RN 0.64.3
Device : Android 11

[How To Reproduce]

  1. Using custom font (like NotoSans from google fonts).
    In this case, I use separate font files of its weights from google fonts (NotoSans-Bold, NotoSans-Regular, NotoSans-Medium)
  2. apply different styling rules using style props
                    <Markdown
                      style={{
                        body: {
                          fontFamily: Fonts.NotoSansRegular,
                          fontSize: 15,
                        },
                        strong: {
						  fontFamily: Fonts.NotoSansBold
						}
                    >
                      {article.contents}
                    </Markdown>
  1. Only body styling applied and other nested component's style ignored and followed by system default.(In my case, just fontWeight were applied by default library's option, fontFamily style were overwritten by system font)
    image

  2. It has same result when using rules prop. I tried even replace global styling option body to text, but it doesn't work.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions