mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 07:20:39 +00:00
134af8ad28
* implemented `MockCameraContainerBloc` to stub camera on simulator * [iOS] fixed camera preview aspect ratio * place screenshots in platform-specific folders * [iOS] updated buildable name * [iOS] fixed stub image cover fit * [iOS] implemented screenshots generator for all target devices * store screenshots in _generated_ folder * Update .gitignore * Created "Build Prod .ipa" workflow * added. certs to .ipa workflow * test ipa building * fixed provision cert path * set provision profile in XCode * set automatic signing for dev builds * set ios version in Podfile * renamed provision file * renamed provision profile * fixed cert folder... * changed provision path * typo * typo * try automatic signing * use manual profile installation * added export options * typo * increased timeout * increased ipa timeout * Update README.md * typo * [iOS] separated camera handling logic * [iOS] fixed vibration * migrated to http server iap * [iOS] fixed histogram * replaced distribution profile with development profile * removed constants from env to the separate file * removed duplicate launch schema * fixed PR check workflow * [iOS] set `ITSAppUsesNonExemptEncryption` to NO * [iOS] removed java reference from "Build .ipa" workflow
31 lines
849 B
Dart
31 lines
849 B
Dart
import 'dart:io';
|
|
|
|
import 'package:vibration/vibration.dart';
|
|
|
|
class HapticsService {
|
|
const HapticsService();
|
|
|
|
Future<void> quickVibration() async => _tryVibrate(duration: 25, amplitude: 96);
|
|
|
|
Future<void> responseVibration() async => _tryVibrate(duration: 50, amplitude: 128);
|
|
|
|
Future<void> errorVibration() async => _tryVibrate(duration: 100, amplitude: 128);
|
|
|
|
Future<void> _tryVibrate({required int duration, required int amplitude}) async {
|
|
if (await _canVibrate()) {
|
|
if (Platform.isAndroid) {
|
|
await Vibration.vibrate(
|
|
duration: duration,
|
|
amplitude: amplitude,
|
|
);
|
|
} else {
|
|
await Vibration.vibrate(
|
|
pattern: [duration],
|
|
intensities: [amplitude],
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
Future<bool> _canVibrate() async => await Vibration.hasVibrator() ?? false;
|
|
}
|