Brian Quinlan
Brian Quinlan
- Thanks for your contribution! Please replace this text with a description of what this PR is changing or adding and why, list any relevant issues, and review the contribution...
Objective-C interfaces are converted to Dart classes that extend _ObjCWrapper e.g. ``` class NSString extends _ObjCWrapper { ``` Instead, they should extend their actual superclass e.g. ``` class NSString extends...
`NSObject` has a `new` class method that is equivalent to `[[class alloc] init]` but calling it is not intuitive because `new` is a keyword in Dart. Maybe we could have...
Apple seems to move around it's framework headers. Currently, on my machine, they have paths like: `/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Foundation.framework/Versions/C/Headers/NSDictionary.h` previously they looked like: `/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Foundation.framework/Versions/C/Headers/NSDictionary.h` It would be nice to have a magic...
- [X] I’ve reviewed the contributor guide and applied the relevant portions to this PR. Contribution guidelines: - See our [contributor guide](https://github.com/dart-lang/.github/blob/main/CONTRIBUTING.md) for general expectations for PRs. - Larger or...
- [X] I’ve reviewed the contributor guide and applied the relevant portions to this PR. Contribution guidelines: - See our [contributor guide](https://github.com/dart-lang/.github/blob/main/CONTRIBUTING.md) for general expectations for PRs. - Larger or...
- Check all of the Dart packages in one workflow and the Flutter ones in separate workflows. --- - [X] I’ve reviewed the contributor guide and applied the relevant portions...
- Thanks for your contribution! Please replace this text with a description of what this PR is changing or adding and why, list any relevant issues, and review the contribution...
@Anikate-De @camsim99
### Description With `firebase_performance_instrumentation_enabled` set to `NO`, the delegate method in the repro code is called. With `firebase_performance_instrumentation_enabled` set to `YES`, the delegate method is not called. It looks like...