From 74b7ec0a5015d0518e00f0595d2a6aa0e3e46eec Mon Sep 17 00:00:00 2001 From: Adam Comella Date: Thu, 7 Feb 2019 06:19:56 -0800 Subject: [PATCH] Text/TextInput: Android now supports `maxFontSizeMultiplier` prop (#755) Introduced by this commit: https://github.com/facebook/react-native/commit/4936d284df36071047ce776d9e2486c0371f7b97 --- docs/text.md | 6 +++--- docs/textinput.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/text.md b/docs/text.md index 011da1e3cf7ec0..8b1feb502632bd 100644 --- a/docs/text.md +++ b/docs/text.md @@ -363,9 +363,9 @@ Specifies largest possible scale a font can reach when `allowFontScaling` is ena * `0`: no max, ignore parent/global default * `>= 1`: sets the `maxFontSizeMultiplier` of this node to this value -| Type | Required | Platform | -| ------ | -------- | -------- | -| number | No | iOS | +| Type | Required | +| ------ | -------- | +| number | No | --- diff --git a/docs/textinput.md b/docs/textinput.md index 0f4c45ad984e79..9420d0a218adab 100644 --- a/docs/textinput.md +++ b/docs/textinput.md @@ -421,9 +421,9 @@ Specifies largest possible scale a font can reach when `allowFontScaling` is ena * `0`: no max, ignore parent/global default * `>= 1`: sets the `maxFontSizeMultiplier` of this node to this value -| Type | Required | Platform | -| ------ | -------- | -------- | -| number | No | iOS | +| Type | Required | +| ------ | -------- | +| number | No | ---