以下代码在iOS(iPhone 6)中无法正常运行。按“Push Me”时,单词不会完全显示,光标也不会显示。在进一步调查中,我发现onChangeText和onContentSize更改未被触发。按下“Push Me”按钮后按键盘上的任意键都会显示完整的单词。我希望单击按钮时显示完整的单词。如果我使用值prop来更新TextInput,它可以工作。但我需要在此链接的“TokenizedTextExample”中显示格式化文本:https://facebook.github.io/react-native/docs/textinput.html
class Designation < ActiveRecord::Base
belongs_to :employee
end
class Employe < ActiveRecord::Base
has_one :designation
has_many :branches
end
class Branch < ActiveRecord::Base
belongs_to :employe
end
答案 0 :(得分:0)
删除TextInput
的固定高度将解决最初的隐藏问题。
<TextInput
multiline={true}
>
<Text>{parts}</Text>
</TextInput>