我想向CupertinoTextField
添加提示文字,而无需导入实质主题。
到目前为止,我尝试将CupertinoTextField
与InputDecoration
混合,如下所示:
CupertinoTextField(
decoration: InputDecoration.collapsed(
hintText: 'Enter you email'
)
)
这会导致以下错误:
The argument type 'InputDecoration' can't be assigned to the parameter type 'BoxDecoration'
答案 0 :(得分:3)
我认为您可以通过placeholder
的{{1}}属性来实现所需的目标。
示例:
CupertinoTextField
答案 1 :(得分:0)
在CupertinoTextField中,它被称为占位符而不是提示
您不能添加
CupertinoTextField(
placeholder: "Your placeholder here",
)
,对于样式占位符,我认为您目前无法使用,因为它是静态的,并且也无法在iOS上自定义。