mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 15:30:59 +00:00
27 lines
639 B
Dart
27 lines
639 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:lightmeter/generated/l10n.dart';
|
|
|
|
class HapticsListTile extends StatefulWidget {
|
|
const HapticsListTile({super.key});
|
|
|
|
@override
|
|
State<HapticsListTile> createState() => _HapticsListTileState();
|
|
}
|
|
|
|
class _HapticsListTileState extends State<HapticsListTile> {
|
|
bool _value = false;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return SwitchListTile(
|
|
secondary: const Icon(Icons.vibration),
|
|
title: Text(S.of(context).haptics),
|
|
value: _value,
|
|
onChanged: (value) {
|
|
setState(() {
|
|
_value = value;
|
|
});
|
|
},
|
|
);
|
|
}
|
|
}
|