「 キーボードショートカット を実装したい!」
本記事ではそんな要望にお答えします。
Flutterでのキーボードショートカットの実装方法について解説します。
Control + C キーなど、キーボードの特定のキーを押下することで、
コピーなどの機能を実行する、そんなアプリケーションが作れるようになります。
以下のGIFは今回紹介するサンプルアプリの実行動画です。
control + R , contorol + B でそれぞれ文字色が変わる、そんなアプリとなっています。
基礎的な部分から丁寧に解説していきます。
ぜひ読んでみてください!
実装方法
実装方法は3段階に分かれます。
- キーボードのキーの押下の検知 (
Focus
ウィジェット) - どのキーが押されたかの判定(
Shortcuts
ウィジェット) - 押されたキーに対応した処理の登録、実行(
Actions
ウィジェット)
それぞれ解説していきます!
キーボードのキーの押下の検知 (Focusウィジェット)
キーボードのキーの押下の検知は、アプリ内で構成要素がFocus
されている必要があります。
TextField
のように選択時に自動でFocus
されるウィジェットならこの項の処理は不要ですが、
今回のアプリのように画面内にText
しかない場合は、
アプリ内でText
にFocus
するように設定が必要です。
あるウィジェットをFocus
されるように設定するのには、Focus
ウィジェットでラップすれば良いです。
Focus(
autofocus: true,
child: Text(
'Hello World!',
style: TextStyle(
fontSize: 40,
color: _color.value,
),
),
),
どのキーが押されたかの判定(Shortcutsウィジェット)
どのキーが押されたかの判定はShortcuts
ウィジェットで行います。
ここで重要になる要素がIntent
です。Intent
はショートカットキーが押された時に後述するActions
ウィジェットに
橋渡しするものとなります。
ショートカットキーが押されると、対応するIntent
がウィジェットツリーを子の方向に伝っていって、Actions
ウィジェットまで到達し、処理が実行されます。
「control + R」を押下した際に橋渡しされるIntent
を以下のように定義します。
class RedIntent extends Intent {
const RedIntent();
}
続いてShortcuts
ウィジェットの設定です。
先程定義したFocus
ウィジェットよりも祖先に、Shortcuts
ウィジェットを配置します。shortcuts
プロパティに、
キーの組み合わせとActions
ウィジェットに送るIntent
をMap
で設定します。
以下はcontrolキーとRキーを同時押しした際の例となります。
Shortcuts(
shortcuts: <LogicalKeySet, Intent>{
LogicalKeySet(LogicalKeyboardKey.control, LogicalKeyboardKey.keyR):
const RedIntent(),
child: const MyWidget(),
),
押されたキーに対応した処理の登録、実行(Actionsウィジェット)
押されたキーに対応した処理の登録、実行はActions
ウィジェットにて行います。
まず、Action
クラスの拡張クラスを用意し、このクラス内に実行したい処理を定義します。
class RedAction extends Action<RedIntent> {
RedAction({required this.color});
ValueNotifier<Color> color;
@override
Object? invoke(covariant RedIntent intent) {
color.value = Colors.red;
return null;
}
}
次に、Actions
ウィジェットをShortcuts
ウィジェットよりも子の方向の位置に定義します。actions
プロパティにてShortcuts
ウィジェットから流れてくるIntent
とAction
の組み合わせをMap
で定義します。
Actions(
actions: <Type, Action<Intent>>{
RedIntent: RedAction(color: _color),
},
child: Scaffold(
//...
),
上記のFocus
, Shortcuts
, Actions
を実装した、最終的なサンプルアプリのコードが以下となります。
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Shortcuts(
shortcuts: <LogicalKeySet, Intent>{
LogicalKeySet(LogicalKeyboardKey.control, LogicalKeyboardKey.keyR):
const RedIntent(),
LogicalKeySet(LogicalKeyboardKey.control, LogicalKeyboardKey.keyB):
const BlueIntent(),
},
child: const MyWidget(),
),
);
}
}
class MyWidget extends StatefulWidget {
const MyWidget({super.key});
@override
State<MyWidget> createState() => _MyWidgetState();
}
class _MyWidgetState extends State<MyWidget> {
final ValueNotifier<Color> _color = ValueNotifier<Color>(Colors.black);
final FocusNode _focusNode = FocusNode();
@override
void initState() {
_focusNode.addListener(() {
if (!_focusNode.hasFocus) {
_focusNode.requestFocus();
}
});
super.initState();
}
@override
void dispose() {
_focusNode.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
return ValueListenableBuilder(
valueListenable: _color,
builder: (context, color, child) {
return Actions(
actions: <Type, Action<Intent>>{
RedIntent: RedAction(color: _color),
BlueIntent: BlueAction(color: _color),
},
child: Scaffold(
body: Center(
child: Focus(
focusNode: _focusNode,
autofocus: true,
child: Text(
'Hello World!',
style: TextStyle(
fontSize: 40,
color: _color.value,
),
),
),
),
),
);
},
);
}
}
class RedIntent extends Intent {
const RedIntent();
}
class RedAction extends Action<RedIntent> {
RedAction({required this.color});
ValueNotifier<Color> color;
@override
Object? invoke(covariant RedIntent intent) {
color.value = Colors.red;
return null;
}
}
class BlueIntent extends Intent {
const BlueIntent();
}
class BlueAction extends Action<BlueIntent> {
BlueAction({required this.color});
ValueNotifier<Color> color;
@override
Object? invoke(covariant BlueIntent intent) {
color.value = Colors.blue;
return null;
}
}
まとめ
本記事ではFlutterでのキーボードショートカットの実装方法について解説します。
いかがだったでしょうか?
複数のウィジェットを組み合わせての実装になるので、ちょっと難しく感じるかもしれません。
ですが、本記事で紹介したポイントを押さえれば、必ず実装できるはずです。
もっと深くキーボードショートカットについて知りたい方は、
以下の公式ドキュメントを読んでみるのをオススメします。
本記事があなたのアプリ開発の一助となれば幸いです。
参考
編集後記(2022/11/17)
先日編集後記に書いた2023年1月25日に何かある、というFlutter公式からのツイートに対し、
詳細が発表されました。
ケニアのナイロビで開かれるオンラインイベントの告知だったようです。
現状では基調講演やテクニカルトーク等が行われる予定、とのことです。
前回Flutter Vikings の開催と同時にFlutter 3.3が発表されたり、
その前のGoogle I/O の開催と同時にFlutter 3.0 が発表されたりしたので、
今回のイベントでもなんらかのアップデートが発表されるのでは?と予想してます。
とにかく、来年の1月が楽しみになる発表でした。
どんな機能が追加されるのか楽しみにしながら待ちたいと思います!
週刊Flutter大学では、Flutterに関する技術記事、Flutter大学についての紹介記事を投稿していきます。
記事の更新情報はFlutter大学Twitterにて告知します。
ぜひぜひフォローをお願いいたします。