gaaclarke
gaaclarke
> Maybe @gaaclarke can assist? Sounds like xiao's PR fixes this? (https://github.com/flutter/samples/pull/1353) Let me know if you need more eyes on this. Xiao knows the most about it but I'm...
cc @ZichangG
@ZichangG The CoreNetworking framework exists for iOS and macosx. If you change iOS and macosx to use it, it will be easier on you since you'll be able to test...
@ZichangG @dnfield That's a bummer. I think we are stuck with the higher level API's if CFSocket doesn't work. #39104 sounds good and necessary but the one problem is that...
> That sounds like something which needs a full GC-equivalent memory scan to ensure. I guess it depends on how the garbage collector was implemented. I was assuming it would...
Don't you think it makes more sense to create a plugin that sets the audio mixing mode for the app instead of tying the functionality to the video player? The...
Yea, seems like we'll have to do a breaking change. What I suggest is removing the `setCategory` call from the `initialize` message and adding a separate call to the plugin...
> I'm not sure we actually need a breaking change. It seems like we could: I'm suggesting we make it a breaking change because the current default behavior is wrong...
Alternatively, you could do something similar by making default values const values that are named and can be used in any context. For example: ```dart void f3([int? j = 42])...
> I believe this is asking for something similar to the second example in #62. Yep, if you solved that you would solve what I'm asking for in the example...