基本属性 请查阅文本
示例
Container(margin: EdgeInsets.only(top : 358.0,left: 30.0, right: 30.0),decoration: BoxDecoration(// border: Border(bottom: BorderSide(color: Colors.red, width: 1.0))),child : Theme(data: new ThemeData(primaryColor: Color(0xff666666)),child: TextField(keyboardType : TextInputType.number,decoration: InputDecoration(hintText: "手机号码",prefixIcon: Icon(Icons.person)),onChanged :(event){phone = event;}),)),Container(margin: EdgeInsets.only(top : 421.0,left: 30.0, right: 30.0),child : Theme(data: new ThemeData(primaryColor: Color(0xff666666)),child: TextField(decoration: InputDecoration(hintText: "密码",prefixIcon: Icon(IconData(0xe635, fontFamily: "MyIcons"), color: Color(0xff666666), size: 18,)),onChanged :(event){password = event;},obscureText: true,),)),

