Resolves #109 No static width for inputs

This commit is contained in:
estevez
2018-10-02 23:21:50 +03:00
parent 8a0d5581d9
commit 648750655c
3 changed files with 6 additions and 6 deletions

View File

@ -53,8 +53,8 @@ class _TextEntityWidgetState extends _EntityWidgetState {
_tmpValue = widget.entity.state;
}
if (this.isTextField || this.isPasswordField) {
return Container(
width: Entity.INPUT_WIDTH,
return Expanded(
//width: Entity.INPUT_WIDTH,
child: TextField(
focusNode: _focusNode,
obscureText: this.isPasswordField,