TextField widgets require a Material widget ancestor.

flutter在运用

TextField控件的时候出现这个错误的,解决方案:

需要用Scaffold进行包裹

class Loging extends StatefulWidget {
  @override
  State createState() {
    // TODO: implement createState
    return new LogingLess();
  }
}

class LogingLess extends State {
  @override
  Widget build(BuildContext context) {
    // TODO: implement build
    return new MaterialApp(
      title: "loging",
      home: new Scaffold(
        body: new LogingUi(),
      ),
    );
  }
}
class LogingUi extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    var size = MediaQuery.of(context).size;
    // TODO: implement build
    return new TextField(
        //相当于Android属性hint
        decoration: new InputDecoration(
      hintText: "用户名",
    ));
  }
}

你可能感兴趣的:(Flutter)