📜  颤振输入 - 任何代码示例

📅  最后修改于: 2022-03-11 14:57:44.707000             🧑  作者: Mango

代码示例1
TextFormField(
    decoration: const InputDecoration(
        hintText: 'Email',
    ),
    validator: (value) {
        if(value.isEmpty) {
            return 'Preencha os campos!';
        }
        return null;
    },
),