We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d573550 commit 2206070Copy full SHA for 2206070
lib/src/features/home/presentation/your_room/your_room_page.dart
@@ -844,7 +844,10 @@ class _SelectionFrameState extends State<_SelectionFrame> {
844
onPointerMove: (event) {
845
if (!_resizing) return;
846
final rawDelta = event.delta;
847
- final unrotatedDelta = _rotateDeltaToUnrotated(rawDelta, widget.rotation);
+ final unrotatedDelta = _rotateDeltaToUnrotated(
848
+ rawDelta,
849
+ widget.rotation,
850
+ );
851
_resizeAccumulated += unrotatedDelta;
852
853
final targetWidth = (_initialWidth + _resizeAccumulated.dx).clamp(
0 commit comments