I’m using the summernote text editor but I don’t know how to scroll in the summernote text editor.
This is my code:
FlutterSummernote(
widthImage: '40%',
hasAttachment: true,
hint: "Your text here...",
key: _keyWhatToDo,
height: 450,
customToolbar: """
[
['style', ['bold', 'italic', 'underline']],
['font', ['strikethrough']],
['fontsize', ['fontsize']],
['color', ['color']],
['para', ['ul', 'ol', 'paragraph']],
]"""
),
please let me know if anything wrong or give me some advice.
2
Answers
It’s working as expected. I don’t know which issue you’ve been facing.
Try to write the below-mentioned code into your
main.dart
file & check the result.Updated: As you requested,
FlutterSummernote
combined withSingleChildScrollView
.It’s working as expected. I don’t know which issue you’ve been facing. Try to write the below-mentioned code into your main.dart file & check the result.