feat(comment-editor): disable list buttons and adjust layout for improved usability

This commit is contained in:
Vaibhav Surve 2025-07-08 17:57:53 +05:30
parent b3b68b6258
commit a9067bd407

View File

@ -24,8 +24,8 @@ class CommentEditorCard extends StatelessWidget {
showBoldButton: true,
showItalicButton: true,
showUnderLineButton: true,
showListBullets: true,
showListNumbers: true,
showListBullets: false,
showListNumbers: false,
showAlignmentButtons: true,
showLink: true,
showFontSize: false,
@ -48,9 +48,9 @@ class CommentEditorCard extends StatelessWidget {
multiRowsDisplay: false,
),
),
const SizedBox(height: 8),
const SizedBox(height: 38),
Container(
height: 120,
height: 140,
padding: const EdgeInsets.all(8),
decoration: BoxDecoration(
border: Border.all(color: Colors.grey.shade300),