import 'package:flutter_vibrate/flutter_vibrate.dart';
vibration({required FeedbackType type}) async {
bool canVibrate = await Vibrate.canVibrate;
try {
if (canVibrate == true) {
return Vibrate.feedback(type);
}
} catch (e) {}
}
版权属于:
narakuyang
作品采用:
《
署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)
》许可协议授权
评论