2017-12-29 15 views

答えて

-1

テキストをすべてラップして、外字にフォントサイズを適用しましたか?

<Text style={{fontSize: xx})> 
<TextInput/> 
<Text/> 

これを試したことがありますか?

<TextInput 

     style={{fontSize: 40}} 
    /> 
0

あなただけheightとともにfontSizeに合格する必要があります。

<TextInput style={{ height: 40, fontSize: 40 }} /> 
関連する問題