我必須更改textInput
的佔位符文本的字體系列。如果我們添加這個secureTextEntry={true}
,提到的字體系列被設置爲佔位符文本。如何在React Native中更改textInput佔位符的字體系列
<TextInput style={styles.textboxfield} secureTextEntry={true} placeholder="Password" />
但是,如果我們刪除此secureTextEntry={true}
,我們不能設置字體家族的佔位符
<TextInput style={styles.textboxfield} placeholder="Password" />
風格是:textboxfieldd:{ 高度:39, 的backgroundColor: '#FFFFFF', marginBottom:0, fontFamily中: 'Inconsolata正規', },
我怎樣才能改變字體家族的佔位符的文本?
這是一個React Native問題。計劃在RN 0.42發佈時發佈修復程序。請參閱[此處]的討論(https://github.com/facebook/react-native/issues/4600)和修復[here](https://github.com/facebook/react-native/pull/12000) 。 – x0z