文本字段中的占位符样式问题



我在TextInput中占位符的样式有问题。我想有其他默认字体。下面我粘贴部分代码。感谢您的帮助和您的时间:)

我尝试添加属性占位符Style={{ fontFamily:"斜体",边框颜色:"蓝色",填充左:200 }}

<Animated.View style={{paddingTop: 300, opacity: this.state.inputsOpacity, width: '90%', position: "absolute"}}>
                <TextInput
                    placeholderStyle={{ fontFamily: "italic", borderColor: 'blue', paddingLeft: 200 }} 
                    placeholder="Enter your email!"
                    style={{
                    borderBottomWidth: 2,
                    borderBottomColor: "black",
                    textAlignVertical: "center",
                    paddingLeft: 10,
                    height: 50
                }}></TextInput>
            </Animated.View>

当文本字段为空时显示占位符。因此,您可以检查 TextField 值的状态,然后相应地设置占位符的样式。此链接包含更多详细信息

相关内容

  • 没有找到相关文章

最新更新