Skip to content

Commit

Permalink
入力補完に#と@を追加
Browse files Browse the repository at this point in the history
  • Loading branch information
Npepperlinux committed Oct 31, 2023
1 parent d7ae977 commit 351855c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions lib/view/common/note_create/basic_keyboard.dart
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ class BasicKeyboard extends StatelessWidget {
controller: controller,
focusNode: focusNode,
),
CustomKeyboardButton(
keyboard: "#",
displayText: "#",
controller: controller,
focusNode: focusNode,
),
CustomKeyboardButton(
keyboard: r"$[",
afterInsert: "]",
Expand All @@ -43,6 +49,12 @@ class BasicKeyboard extends StatelessWidget {
controller: controller,
focusNode: focusNode,
),
CustomKeyboardButton(
keyboard: "@",
displayText: "@",
controller: controller,
focusNode: focusNode,
),
CustomKeyboardButton(
keyboard: "<i>",
afterInsert: "</i>",
Expand Down

0 comments on commit 351855c

Please sign in to comment.