[Mobile] Flutter-Quill editor inside a scrollable form #291
-
My issue is about [Mobile] I would like to put my I've tried with a
Here's some code: return Scaffold(
appBar: AppBar(
title: Text("Reply form"),
actions: [
IconButton(
onPressed: () {},
icon: Icon(Icons.send),
tooltip: "Send",
)
],
),
body: SafeArea(
child: Form(
child: ListView(
children: [
Text("From: [email protected]"),
SizedBox(height: 8),
chipInputField(
label: "To",
onChanged: (List<Object?> o) {},
initialValue: ["[email protected]"],
),
chipInputField(
label: "Cc",
onChanged: (List<Object?> o) {},
initialValue: ["[email protected]"],
),
chipInputField(
label: "Bcc",
onChanged: (List<Object?> o) {},
initialValue: ["[email protected]"],
),
QuillEditor(
controller: quillController,
scrollable: true,
scrollController: ScrollController(),
focusNode: FocusNode(),
padding: EdgeInsets.all(5),
autoFocus: true,
readOnly: false,
expands: false,
placeholder: "compose_email",
),
QuillToolbar.basic(
controller: quillController,
showUnderLineButton: false,
showStrikeThrough: false,
showColorButton: false,
showBackgroundColorButton: false,
showListCheck: false,
showIndent: false,
),
],
),
),
),
); First issue: the compose email part is not expanded inside the application page Second issue: as long as I write some text, the widget is not scrolling |
Beta Was this translation helpful? Give feedback.
Answered by
kevinDespoulains
Aug 30, 2021
Replies: 1 comment
-
Hello, I have created a PR #371 to solve this issue with a code example, can you take a look and tell me if it is working for you ? Thank you ! |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
singerdmx
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello,
I have created a PR #371 to solve this issue with a code example, can you take a look and tell me if it is working for you ?
Thank you !