Tomasz Wyrowiński
Tomasz Wyrowiński
Code analysis shows following warning when a private method is called, even though it's not visible to Godot (`private2` in this case): ``` Overrides registered abstract function without registering itself....
Following snippet produces a warning which doesn't seem to be correct: ``` class Simple { var number = IntHolder().intValue.toDouble() fun updateNumber() { number = 5.0 } } class IntHolder {...
I am using `modal_bottom_sheet` together with `auto_route` package. My routes declaration looks more or less like this: ```Dart @MaterialAutoRouter( routes: [ AutoRoute( path: '/', page: EmptyRouterPage, name: 'RootRoute', children: [...
### Environment and configuration DCM version: 5.7.4 Dart SDK version: 3.0.1 ### What did you do? ``` flutter pub run dart_code_metrics:metrics check-unused-code --exclude={/**.g.dart,/**.freezed.dart,/**injectable.dart,/localization/**.dart} lib ``` ### What did you expect...
It seems to be unable to mock navigator interactions when code in tests depends on types that are not publicly visible. It's not uncommon that the Flutter SDK uses internal...
The current implementation of `FlagsmithClient` attaches `sendTimeout` from `FlagsmithConfig` to every http request it sends. On the web platform, this causes dio client to [log warnings](https://github.com/cfug/dio/blob/945d4879f8d316ce29c38f12eef40a19d6e413ef/plugins/web_adapter/lib/src/adapter.dart#L149) about the timeout property...
Currently, it is required to store the Godot and Kotlin projects in the same root directory. This approach leads to mixing configurations and directories of two different project types. While...
**Describe the bug** When applying a rename refactoring to a function that defines a generic type parameter and a function parameter being selected, the popup preselects an invalid portion of...
### Swift version swiftlang-6.0.2.1.2 clang-1600.0.26.4 ### Platform macOS 15.3.2 ### Editor Visual Studio Code with Swift extension 2.2.0 ### Description I noticed that module resolution stopped working recently in a...