Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nateshmbhat/touchable
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: fieldbots/touchable
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.
  • 10 commits
  • 29 files changed
  • 2 contributors

Commits on Feb 22, 2022

  1. Copy the full SHA
    2398515 View commit details
  2. fixed missing callback

    marcotrumpet committed Feb 22, 2022
    Copy the full SHA
    e52e45f View commit details
  3. Copy the full SHA
    b83e3e9 View commit details

Commits on Mar 9, 2022

  1. translate + scale

    jonasbark committed Mar 9, 2022
    Copy the full SHA
    66996e0 View commit details
  2. translate + scale

    jonasbark committed Mar 9, 2022
    Copy the full SHA
    d57ef86 View commit details
  3. translate + scale

    jonasbark committed Mar 9, 2022
    Copy the full SHA
    b020212 View commit details
  4. translate + scale

    jonasbark committed Mar 9, 2022
    Copy the full SHA
    1776d38 View commit details

Commits on Apr 4, 2022

  1. Merge remote-tracking branch 'marco/master'

    # Conflicts:
    #	example/lib/screens/screen3.dart
    #	lib/src/shape_handler.dart
    jonasbark committed Apr 4, 2022
    Copy the full SHA
    affa712 View commit details

Commits on Jul 8, 2022

  1. translate + scale

    jonasbark committed Jul 8, 2022
    Copy the full SHA
    03352e7 View commit details

Commits on Jul 10, 2022

  1. fix pan end

    jonasbark committed Jul 10, 2022
    Copy the full SHA
    bc09c4c View commit details
4 changes: 2 additions & 2 deletions example/android/app/build.gradle
Original file line number Diff line number Diff line change
@@ -26,7 +26,7 @@ apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"

android {
compileSdkVersion 30
compileSdkVersion 31

sourceSets {
main.java.srcDirs += 'src/main/kotlin'
@@ -36,7 +36,7 @@ android {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.geekytech.touchable.example"
minSdkVersion 16
targetSdkVersion 30
targetSdkVersion 31
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}
2 changes: 1 addition & 1 deletion example/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
buildscript {
ext.kotlin_version = '1.3.50'
ext.kotlin_version = '1.5.10'
repositories {
google()
jcenter()
1 change: 0 additions & 1 deletion example/lib/main.dart
Original file line number Diff line number Diff line change
@@ -2,7 +2,6 @@ import 'package:example/screens/screen1.dart';
import 'package:example/screens/screen2.dart';
import 'package:example/screens/screen3.dart';
import 'package:flutter/material.dart';
import 'package:touchable/touchable.dart';

void main() {
runApp(MaterialApp(
26 changes: 17 additions & 9 deletions example/lib/screens/screen1.dart
Original file line number Diff line number Diff line change
@@ -26,6 +26,10 @@ class _Screen1State extends State<Screen1> with SingleTickerProviderStateMixin {
width: 400,
height: 900,
child: CanvasTouchDetector(
gesturesToOverride: [
GestureType.onTapDown,
GestureType.onTapUp,
],
builder: (context) {
return CustomPaint(
painter: MyPainter(context, (String circleColor) {
@@ -74,8 +78,9 @@ class MyPainter extends CustomPainter {
void paint(Canvas _canvas, Size size) {
TouchyCanvas canvas = TouchyCanvas(context, _canvas);

canvas.drawCircle(Offset(0, 0), 60, Paint()..color = Colors.deepOrange, onTapDown: (_) {
print("orange Circle touched");
canvas.drawCircle(Offset(0, 0), 60, Paint()..color = Colors.deepOrange,
onTapDown: (_) {
print('orange Circle touched');
setState('orange');
});

@@ -87,7 +92,7 @@ class MyPainter extends CustomPainter {
..strokeWidth = 200
..style = PaintingStyle.stroke, onTapDown: (detail) {
setState('black');
print("black line touched");
print('black line touched');
});

canvas.drawOval(
@@ -96,7 +101,7 @@ class MyPainter extends CustomPainter {
..color = Colors.deepPurple
..style = PaintingStyle.stroke
..strokeWidth = 70, onTapDown: (_) {
print("purple oval touched");
print('purple oval touched');
setState('purple');
});

@@ -106,7 +111,7 @@ class MyPainter extends CustomPainter {
..color = Colors.deepOrange
..style = PaintingStyle.stroke
..strokeWidth = 50, onTapDown: (_) {
print("orange rect touched");
print('orange rect touched');
setState('orange');
});

@@ -115,11 +120,13 @@ class MyPainter extends CustomPainter {
..style = PaintingStyle.stroke
..strokeWidth = 10;
canvas.drawCircle(Offset(150, 50), 60, paint, onTapDown: (_) {
print("green Circle touched");
print('green Circle touched');
setState('green');
});

canvas.drawCircle(Offset(150, 250), 70, Paint()..color = Colors.lightBlueAccent, onTapDown: (_) {
canvas.drawCircle(
Offset(150, 250), 70, Paint()..color = Colors.lightBlueAccent,
onTapDown: (_) {
print('light blue Circle tap down');
setState('white');
}, onTapUp: (detail) {
@@ -145,11 +152,12 @@ class MyPainter extends CustomPainter {
..strokeWidth = 40
..color = Colors.grey, onTapDown: (_) {
setState('grey');
print("grey RRect touched");
print('grey RRect touched');
});

canvas.drawRRect(
RRect.fromLTRBR(100 - 20.0, 340 - 20.0, 300 + 20.0, 650 + 20.0, Radius.elliptical(100 + 20.0, 150 + 20.0)),
RRect.fromLTRBR(100 - 20.0, 340 - 20.0, 300 + 20.0, 650 + 20.0,
Radius.elliptical(100 + 20.0, 150 + 20.0)),
Paint()
..strokeWidth = 1
..style = PaintingStyle.stroke
24 changes: 12 additions & 12 deletions example/lib/screens/screen2.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import 'dart:math';
import 'dart:ui';
import 'package:flutter/cupertino.dart';

import 'package:flutter/material.dart';
import 'package:touchable/touchable.dart';

@@ -106,7 +105,7 @@ class MyPainter extends CustomPainter {
pi,
false,
Paint()..color = Colors.black, onTapDown: (detail) {
print("clicked");
print('clicked');
if (smileAnimation.value == 90) {
smileAnimationController.reverse();
}
@@ -116,11 +115,11 @@ class MyPainter extends CustomPainter {
void drawNose(TouchyCanvas canvas, Size size) {
var center = Offset(size.width / 2, size.height / 2);
var noseColor =
ColorTween(begin: Colors.blueGrey, end: Colors.lightBlueAccent).animate(
CurvedAnimation(
parent: noseAnimationController, curve: Curves.bounceOut));
ColorTween(begin: Colors.blueGrey, end: Colors.lightBlueAccent).animate(
CurvedAnimation(
parent: noseAnimationController, curve: Curves.bounceOut));
var noseLength =
Tween<double>(begin: 0, end: 100).animate(noseAnimationController);
Tween<double>(begin: 0, end: 100).animate(noseAnimationController);
var upperbound = noseAnimationController.upperBound;

void drawNose(Color color, double extraLength) {
@@ -132,12 +131,13 @@ class MyPainter extends CustomPainter {
Offset(center.dx + 15, center.dy + 25 + extraLength)
], true),
Paint()..color = color, onTapDown: (_) {
print("On Pan Down");
print('On Pan Down');
if (noseAnimationController.value == upperbound ||
noseAnimationController.status == AnimationStatus.forward) {
noseAnimationController.reverse();
} else
} else {
noseAnimationController.forward();
}
});
}

@@ -161,8 +161,8 @@ class MyPainter extends CustomPainter {
Offset(center.dx - xOffset, center.dy - 40), 10, Paint());
canvas.drawCircle(Offset(center.dx + xOffset, center.dy - 50), 20,
Paint()..color = Colors.transparent, onTapDown: (_) {
eyeAnimationController.reverse();
});
eyeAnimationController.reverse();
});
}

void drawEyeLid(double xOffset) {
@@ -186,4 +186,4 @@ class MyPainter extends CustomPainter {
bool shouldRepaint(CustomPainter oldDelegate) {
return true;
}
}
}
12 changes: 8 additions & 4 deletions example/lib/screens/screen3.dart
Original file line number Diff line number Diff line change
@@ -25,9 +25,10 @@ class _Screen3State extends State<Screen3> with SingleTickerProviderStateMixin {
width: 400,
height: 900,
child: CanvasTouchDetector(
gesturesToOverride: [GestureType.onTapUp, GestureType.onTapDown],
builder: (context) {
return CustomPaint(
painter: MyPainter(context, (String circleColor) {
painter: MyPainter(context, color, (String circleColor) {
setState(() {
switch (circleColor) {
case 'orange':
@@ -65,16 +66,19 @@ class _Screen3State extends State<Screen3> with SingleTickerProviderStateMixin {

class MyPainter extends CustomPainter {
Function(String) setState;
final Color color;
final BuildContext context;

MyPainter(this.context, this.setState);
MyPainter(this.context, this.color, this.setState);

@override
void paint(Canvas _canvas, Size size) {
TouchyCanvas canvas = TouchyCanvas(context, _canvas);
canvas.scale(0.5, 0.5);

canvas.drawRect(Rect.fromLTWH(0, 0, 100, 300), Paint()..color = Colors.blue, onTapDown: (_) {
setState('blue');
canvas.translate(0, 100);
canvas.drawRect(Rect.fromLTWH(100, 100, 100, 200), Paint()..color = Colors.blue, onTapDown: (_) {
setState(color == Colors.pinkAccent ? 'grey' : 'pink');
});
}

25 changes: 16 additions & 9 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ packages:
name: async
url: "https://pub.dartlang.org"
source: hosted
version: "2.6.1"
version: "2.8.2"
boolean_selector:
dependency: transitive
description:
@@ -21,14 +21,14 @@ packages:
name: characters
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.0"
version: "1.2.0"
charcode:
dependency: transitive
description:
name: charcode
url: "https://pub.dartlang.org"
source: hosted
version: "1.2.0"
version: "1.3.1"
clock:
dependency: transitive
description:
@@ -73,14 +73,21 @@ packages:
name: matcher
url: "https://pub.dartlang.org"
source: hosted
version: "0.12.10"
version: "0.12.11"
material_color_utilities:
dependency: transitive
description:
name: material_color_utilities
url: "https://pub.dartlang.org"
source: hosted
version: "0.1.3"
meta:
dependency: transitive
description:
name: meta
url: "https://pub.dartlang.org"
source: hosted
version: "1.3.0"
version: "1.7.0"
path:
dependency: transitive
description:
@@ -134,14 +141,14 @@ packages:
name: test_api
url: "https://pub.dartlang.org"
source: hosted
version: "0.3.0"
version: "0.4.8"
touchable:
dependency: "direct main"
description:
path: ".."
relative: true
source: path
version: "1.0.0"
version: "1.0.1"
typed_data:
dependency: transitive
description:
@@ -155,6 +162,6 @@ packages:
name: vector_math
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.0"
version: "2.1.1"
sdks:
dart: ">=2.12.0 <3.0.0"
dart: ">=2.14.0 <3.0.0"
8 changes: 1 addition & 7 deletions example/test/widget_test.dart
Original file line number Diff line number Diff line change
@@ -5,10 +5,4 @@
// gestures. You can also use WidgetTester to find child widgets in the widget
// tree, read text, and verify that the values of widget properties are correct.

import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';

import 'package:example/main.dart';

void main() {
}
void main() {}
5 changes: 5 additions & 0 deletions lib/src/canvas_touch_detector.dart
Original file line number Diff line number Diff line change
@@ -178,6 +178,11 @@ class _CanvasTouchDetectorState extends State<CanvasTouchDetector> {
touchController
.add(Gesture(GestureType.onPanDown, tapDetail));
},
onPanEnd: !widget.gesturesToOverride.contains(GestureType.onPanEnd)
? null
: (tapDetail) {
touchController.add(Gesture(GestureType.onPanEnd, tapDetail));
},
onSecondaryTapDown: !widget.gesturesToOverride
.contains(GestureType.onSecondaryTapDown)
? null
28 changes: 25 additions & 3 deletions lib/src/shape_handler.dart
Original file line number Diff line number Diff line change
@@ -11,6 +11,11 @@ class ShapeHandler {
final List<ClipShapeItem> clipItems = [];
final Set<GestureType> _registeredGestures = {};

double _scaleX = 1;
double _scaleY = 1;
double _translationX = 0;
double _translationY = 0;

Set<GestureType> get registeredGestures => _registeredGestures;

void addShape(Shape shape) {
@@ -88,11 +93,13 @@ class ShapeHandler {
ScrollController? scrollController,
AxisDirection direction = AxisDirection.down,
}) async {
var touchPoint = _getActualOffsetFromScrollController(
TouchCanvasUtil.getPointFromGestureDetail(gesture.gestureDetail), scrollController, direction);
var touchPoint = _getActualOffsetWithScaleAndTranslation(_getActualOffsetFromScrollController(
TouchCanvasUtil.getPointFromGestureDetail(gesture.gestureDetail), scrollController, direction));
if (!_registeredGestures.contains(gesture.gestureType)) return;

var touchedShapes = _getTouchedShapes(touchPoint);
final fixedTouchPoint = gesture.gestureType == GestureType.onPanEnd ? Offset(touchPoint.dx.abs(), touchPoint.dy.abs()) : touchPoint;

var touchedShapes = _getTouchedShapes(fixedTouchPoint);
if (touchedShapes.isEmpty) return;
for (var touchedShape in touchedShapes) {
if (touchedShape.registeredGestures.contains(gesture.gestureType)) {
@@ -101,4 +108,19 @@ class ShapeHandler {
}
}
}

Offset _getActualOffsetWithScaleAndTranslation(Offset touchPoint) {
//return Offset(touchPoint.dx / _scaleX - _translationX, touchPoint.dy / _scaleY - _translationY);
return Offset((touchPoint.dx - _translationX) / _scaleX, (touchPoint.dy - _translationY) / _scaleY);
}

void scale(double sx, [double? sy]) {
_scaleX = sx;
_scaleY = sy ?? sx;
}

void translate(double sx, double sy) {
_translationX = sx;
_translationY = sy;
}
}
Loading