mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-16 23:26:14 +08:00
10 lines
216 B
Dart
10 lines
216 B
Dart
import 'package:PiliPlus/utils/storage.dart';
|
|
import 'package:flutter/services.dart';
|
|
|
|
bool enableFeedback = GStorage.feedBackEnable;
|
|
void feedBack() {
|
|
if (enableFeedback) {
|
|
HapticFeedback.lightImpact();
|
|
}
|
|
}
|