Filip Hracek

Results 129 comments of Filip Hracek

> As long as it's the dev setup is reasonable, that would probably be the fastest way to get this fixed. Great! I just sent you an invite. You just...

> you can try updating to the latest VisualStudio 2022 This fixed the issue for me. For other people like me who aren't familiar with VisualStudio tools, you can run...

`Color.value` is also the most convenient way to feed `Vertices.raw()` with color values, since it expects an `Int32List` of colors. So I assume that we need to ignore the warning...

> > Color.value used to be a simple accessor to a single int > > It's not. I know. My point was that it used to be: https://github.com/flutter/flutter/blob/285d77e993a4645910235132d05152b272c8a900/engine/src/flutter/lib/ui/painting.dart#L147

FWIW, I think a `Bus` should be a class. Here's a sketch of the API (just spitballing): ```dart final soloud = SoLoud.instance; await soloud.initialize(); final sfxBus = soloud.createBus(); sfxBus.setVolume(0.5); sfxBus.filter.compressor.activate();...

Hmm, to be honest, I don't even know how big of change this would be. Does Dart support HTTPS natively? I'll have to investigate. Also, any help would be greatly...

Actually, this is separate from #2100. This could be a short code sample in https://docs.flutter.dev/testing#integration-testing. To limit the scope, it might just show how to make a screenshot.

Thanks for the clarification! In that case, I would like to see a more helpful error. You see, modern Dart switch statements give you a lot of power, e.g. the...

For what it's worth, my workaround was to downgrade to the previous stable version of Flutter: 1. `flutter downgrade 3.27.3` 2. `flutter pub global deactivate flutterpi_tool` (needed to do this...

I originally reported this issue on IntelliJ's YouTrack, but they say it's a plugin issue: https://youtrack.jetbrains.com/issue/WEB-68867