6 4 月 2026, 周一

Flutter 踩坑之[报错]No Material widget found

报此错误的组件外面包裹一个 Material 组件。

                              Material(
                                child: Container(
                                  child: TextField(
                                    controller: TextEditingController(text: '1212'),
                                    decoration: const InputDecoration(
                                        labelText: '用户名',
                                        hintText: '用户名',
                                        border: OutlineInputBorder()),
                                  ),
                                  margin: EdgeInsets.all(5),
                                ),
                              ),
Avatar photo

sion932