如何在 flutter 中为 TextFormField 设置 filled material 设计风格?

How set filled material design style forTextFormField in flutter?

Material Design 中的文本字段有两种设计:1. 填充 2. 概述。但是出于某种原因,在 flutter 中只有一个设计选项,即 - outlined。如何为 TextFormField 添加填充样式。看起来像这样

随着InputDecoration(filled: true)

TextFormField(
    decoration: InputDecoration(filled: true),
),