flutter-html-editor
flutter-html-editor copied to clipboard
how do I set the height to fill all the space?
how do I set the height to fill all the space?
height: ????,
LayoutBuilder(
builder: (context, constraints) => HtmlEditor(
hint: "Your text here...",
//value: "text content initial, if any",
key: keyEditor,
height: constraints.maxHeight,
showBottomToolbar: false,
),
)