Skip to content

Commit

Permalink
chore: enable multiline checklist tasks on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
richardshiue committed Sep 4, 2024
1 parent 199bcf5 commit a8b561d
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ class _ChecklistItemState extends State<_ChecklistItem> {
Widget build(BuildContext context) {
return Container(
padding: const EdgeInsets.symmetric(horizontal: 5),
height: 44,
constraints: const BoxConstraints(minHeight: 44),
child: Row(
children: [
InkWell(
Expand All @@ -178,6 +178,8 @@ class _ChecklistItemState extends State<_ChecklistItem> {
controller: _textController,
focusNode: _focusNode,
style: Theme.of(context).textTheme.bodyMedium,
keyboardType: TextInputType.multiline,
maxLines: null,
decoration: InputDecoration(
border: InputBorder.none,
enabledBorder: InputBorder.none,
Expand Down

0 comments on commit a8b561d

Please sign in to comment.