📜  使文本呈圆形颤动 - 无论代码示例

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

代码示例1
new TextField(
  decoration: new InputDecoration(
      border: new OutlineInputBorder(
        borderRadius: const BorderRadius.all(
          const Radius.circular(10.0),
        ),
      ),
      filled: true,
      hintStyle: new TextStyle(color: Colors.grey[800]),
      hintText: "Type in your text",
      fillColor: Colors.white70),
)