fix: box constraints on desc field
This commit is contained in:
parent
0c0bdda465
commit
7a4c6fd9f1
1 changed files with 5 additions and 3 deletions
|
@ -155,9 +155,11 @@ class _CreateEntryViewState extends State<CreateEntryView> {
|
|||
const SizedBox(
|
||||
height: 10,
|
||||
),
|
||||
SizedBox(
|
||||
height: 300,
|
||||
width: MediaQuery.of(context).size.width * 0.8,
|
||||
ConstrainedBox(
|
||||
constraints: BoxConstraints(
|
||||
minWidth: MediaQuery.of(context).size.width * 0.8,
|
||||
maxWidth: MediaQuery.of(context).size.width * 0.8,
|
||||
maxHeight: 300),
|
||||
child: PlatformField(
|
||||
keyboardType: TextInputType.multiline,
|
||||
maxLines: null,
|
||||
|
|
Loading…
Reference in a new issue