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(
|
const SizedBox(
|
||||||
height: 10,
|
height: 10,
|
||||||
),
|
),
|
||||||
SizedBox(
|
ConstrainedBox(
|
||||||
height: 300,
|
constraints: BoxConstraints(
|
||||||
width: MediaQuery.of(context).size.width * 0.8,
|
minWidth: MediaQuery.of(context).size.width * 0.8,
|
||||||
|
maxWidth: MediaQuery.of(context).size.width * 0.8,
|
||||||
|
maxHeight: 300),
|
||||||
child: PlatformField(
|
child: PlatformField(
|
||||||
keyboardType: TextInputType.multiline,
|
keyboardType: TextInputType.multiline,
|
||||||
maxLines: null,
|
maxLines: null,
|
||||||
|
|
Loading…
Reference in a new issue