@ant-design/react-native 输入字段添加 border-bottom 默认值,我想删除它

问题描述 投票:0回答:1

我尝试添加 borderBottomWidth 和 borderColor 但它不起作用

              <Form.Item
                key={index}
                name={field.name}
                rules={field.validations}
                label={field.label}
                required={field.required}
                style={{
                  borderBlockColor: "transparent",
                  borderBottomWidth: 0,
                }}>
                <Input placeholder={field.placeholder} />
              </Form.Item>
react-native antd
1个回答
0
投票

貌似不能自定义样式。 相反,您可以使用 style prop 将样式添加到输入项

enter image description here

您可以在这里找到更多信息

© www.soinside.com 2019 - 2024. All rights reserved.