implemented a central haptic feedback system with configurable levels (off, reduced, full), added a Haptics facade providing semantic feedback methods, integrated haptic cues across navigation, settings toggles, and async action results, and updated version to 1.1.0+54
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
part of 'haptic_settings.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// JsonSerializableGenerator
|
||||
// **************************************************************************
|
||||
|
||||
HapticSettings _$HapticSettingsFromJson(Map<String, dynamic> json) =>
|
||||
HapticSettings(level: $enumDecode(_$HapticLevelEnumMap, json['level']));
|
||||
|
||||
Map<String, dynamic> _$HapticSettingsToJson(HapticSettings instance) =>
|
||||
<String, dynamic>{'level': _$HapticLevelEnumMap[instance.level]!};
|
||||
|
||||
const _$HapticLevelEnumMap = {
|
||||
HapticLevel.off: 'off',
|
||||
HapticLevel.reduced: 'reduced',
|
||||
HapticLevel.full: 'full',
|
||||
};
|
||||
Reference in New Issue
Block a user