jonjon1123

Results 7 comments of jonjon1123

Sorry, should have included a screenshot. Here is an example of the dialog I get when I cast on YouTube Music. ![image](https://user-images.githubusercontent.com/691969/125177803-6cbace00-e1a4-11eb-9057-6c7e67b368db.png) The icons I am taking about are in...

A few more pieces of information here... I noticed in another cast dart lib that there were [some comments on what some of the extras mean](https://github.com/terrabythia/dart_chromecast/blob/ebd41b6cd862e2854bd1aa38257ea89c3cce2073/lib/casting/cast_device.dart#L35). I also found what...

Any hints on how to go about determining this? I am happy to try and implement this, but I will prob need some guidance.

Yeah, I tried wrapping `GestureDetector` around each child, but there is a weird delay in when it fires and sets the state for which child is being dragged. It seems...

I _think_ I may have a workable solution to this. First, I changed the following so we can get access to `DragStartDetails`: ``` typedef RadialDragStart = Function(PolarCoord startCoord, DragStartDetails details);...

Yeah, I ended up passing in the list of `keys` to `CircleList`. This does assume that the order of the list of `keys` is the same as the list of...

Yeah, I eventually figured that out. Now I am trying to figure out how to determine the velocity of the dragging. I am trying to achieve something similar to this:...