flutter-moum / flutter_hardware_buttons

Flutter plugin for detecting all hardware buttons
MIT License
37 stars 47 forks source link

How to use HardwareButtons Enum ? #28

Closed songyiYu closed 4 years ago

songyiYu commented 4 years ago
스크린샷 2019-10-19 오후 2 05 18

I can't find HardwareButtons in code. Do I have to implement HardwareButtons enum by myself?

giantsol commented 4 years ago

Change

import 'package:hardware_buttons/hardware_buttons.dart';

as:

import 'package:hardware_buttons/hardware_buttons.dart' as HardwareButtons;

then it'll find the variables properly.

I'll update example README to include import statements. Thanks :)