mirror of
https://github.com/zjs81/meshcore-open.git
synced 2026-04-20 22:13:48 +00:00
49 lines
1.4 KiB
Dart
49 lines
1.4 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:provider/provider.dart';
|
|
|
|
import '../services/chat_text_scale_service.dart';
|
|
|
|
/// Gesture wrapper that exposes two-finger pinch-to-zoom for chat scrollables.
|
|
/// Double-tap resets the scale. Only the wrapper itself listens to gestures;
|
|
/// child scrollables keep their normal touch handling.
|
|
class ChatZoomWrapper extends StatefulWidget {
|
|
const ChatZoomWrapper({super.key, required this.child, this.onDoubleTap});
|
|
|
|
final Widget child;
|
|
final VoidCallback? onDoubleTap;
|
|
|
|
@override
|
|
State<ChatZoomWrapper> createState() => _ChatZoomWrapperState();
|
|
}
|
|
|
|
class _ChatZoomWrapperState extends State<ChatZoomWrapper> {
|
|
double? _startScale;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final service = context.read<ChatTextScaleService>();
|
|
|
|
return GestureDetector(
|
|
behavior: HitTestBehavior.translucent,
|
|
onDoubleTap: () {
|
|
service.reset();
|
|
service.persist();
|
|
widget.onDoubleTap?.call();
|
|
},
|
|
onScaleStart: (details) {
|
|
if (details.pointerCount != 2) return;
|
|
_startScale = service.scale;
|
|
},
|
|
onScaleUpdate: (details) {
|
|
if (details.pointerCount != 2) return;
|
|
final baseScale = _startScale ?? service.scale;
|
|
service.setScale(baseScale * details.scale);
|
|
},
|
|
onScaleEnd: (_) {
|
|
_startScale = null;
|
|
service.persist();
|
|
},
|
|
child: widget.child,
|
|
);
|
|
}
|
|
}
|