Browse Source

fix(neon_notes): Fix scrolling markdown previews

Signed-off-by: jld3103 <jld3103yt@gmail.com>
pull/862/head
jld3103 1 year ago
parent
commit
618f8359ae
No known key found for this signature in database
GPG Key ID: 9062417B9E8EB7B3
  1. 4
      packages/neon/neon_notes/lib/pages/note.dart

4
packages/neon/neon_notes/lib/pages/note.dart

@ -164,7 +164,8 @@ class _NotesNotePageState extends State<NotesNotePage> {
border: InputBorder.none, border: InputBorder.none,
), ),
) )
: MarkdownBody( : SingleChildScrollView(
child: MarkdownBody(
data: _contentController.text, data: _contentController.text,
onTapLink: (final text, final href, final title) async { onTapLink: (final text, final href, final title) async {
if (href != null) { if (href != null) {
@ -178,5 +179,6 @@ class _NotesNotePageState extends State<NotesNotePage> {
), ),
), ),
), ),
),
); );
} }

Loading…
Cancel
Save