flutter-html-editor icon indicating copy to clipboard operation
flutter-html-editor copied to clipboard

how do I set the height to fill all the space?

Open studiozocaro opened this issue 5 years ago • 1 comments

how do I set the height to fill all the space?

height: ????,

studiozocaro avatar May 27 '20 11:05 studiozocaro

LayoutBuilder(
          builder: (context, constraints) => HtmlEditor(
            hint: "Your text here...",
            //value: "text content initial, if any",
            key: keyEditor,
            height: constraints.maxHeight,
            showBottomToolbar: false,
          ),
        )

yokoboko avatar Jul 15 '20 06:07 yokoboko