v0.0.4
hardware_buttons_find_flutter
다른 버튼이 있는 모바일 장치에서 버튼을 누를 때 버튼 이름을 듣습니다.
25좋아요 6630일 다운로드135Pub 점수
Android
다른 버튼이 있는 모바일 장치에서 버튼을 누를 때 버튼 이름을 듣습니다.
{"sdk":"flutter"}^2.0.2{"sdk":"flutter"}^2.0.0아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
It is necessary to learn the feedback of buttons on different types of reading devices and take steps based on it. This plugin will help you. This code, written with Stream, always listens to the native code, returning the name of the button to you when the button is pressed. Based on the answer you get, write down the functions you envision.
class _MyAppState extends State<MyApp> {
String? _latestHardwareButtonEvent;
StreamSubscription<String>? _buttonSubscription;
@override
void initState() {
super.initState();
_buttonSubscription = HardwareButtons.buttonEvents?.listen((event) {
setState(() {
_latestHardwareButtonEvent = event.toString();
});
});
}
@override
void dispose() {
super.dispose();
_buttonSubscription?.cancel();
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Hardware buttons find'),
),
body: Center(
child: Column(
mainAxisSize: MainAxisSize.min,
children: <Widget>[
Text('Button name: $_latestHardwareButtonEvent\n'),
],
),
),
),
);
}
}