mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +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();
|
|
}
|
|
}
|