Tobbyte

Results 7 comments of Tobbyte

Hey Peter, as it seems you are busy with other stuff. Just wanted to ask if you have any plans regarding this project? Hope every thing is alright for you,...

did you maybe forget to ask for permission? // required in iOS 8+ cordova.plugins.locationManager.requestWhenInUseAuthorization(); cordova.plugins.locationManager.requestAlwaysAuthorization();

@calebvandenberg ok, so I managed to implement panEdgeFraction for touch input: First, add `Dygraph.Interaction.startPan(event, g, context);` to `touchstart` ``` javascript interactionModel: { touchstart: function(event, g, context) { Dygraph.defaultInteractionModel.touchstart(event, g, context);...

update: ``` javascript //Dygraph.Interaction.moveTouch = function(event, g, context) { moveTouch = function(event, g, context) { // If the tap moves, then it's definitely not part of a double-tap. context.startTimeForDoubleTapMs =...

not sure what you mean. Could adding Stops to your gradient solve your problem? You could use them to define hard edges. https://css-tricks.com/books/greatest-css-tricks/hard-stop-gradients/

yup ``ScaleGestureRecognizer`` and ``PanGestureRecognizer`` don't like to be put together. Solution for me was to check for the ``pointerCount``: when only one, use ```details.focalPointDelta.dx``` to effectively get the panRecognizer. With...

you could use my workaround to archive something like this, see here: https://github.com/imaNNeo/fl_chart/issues/71#issuecomment-2240945146 Ignore the zoomable chart part and you can add whatever widget you like on top of and...