Andreas Monitzer

Results 112 comments of Andreas Monitzer

Ok, that version of hyprland was competely broken, it didn't even compile one of its files needed for plugins properly (the joy of having to use a -git package). `0.42.0.r46.c86db7bb-1`...

Yes, I'm running it on a Minisforum V3, which has both a touchscreen and a touchpad. My tests were only on the touchscreen.

[Config file](https://gist.github.com/anlumo/3b5b5850d9b482d3a4b77abe96fdc49f) Video: https://github.com/user-attachments/assets/86c0d44d-914f-4344-8ce6-d69c826353ba Not visible in the video, but I did move my fingers around while the window was hovering.

Yes that fixed it, thank you! Should I keep the ticket open to track the `no_warps` incompatibility? > after reading the wiki on `no_warps` I have no clue what it...

Then please add the [Deprecated annotation](https://api.flutter.dev/flutter/dart-core/Deprecated-class.html). I wasn't aware of that, and the documentation also doesn't say it.

If it's broken and not going to be fixed, isn't that the definition of deprecation? If you don't want people to encounter warnings when using that class, maybe just include...

Flutter implements it [like this](https://api.flutter.dev/flutter/material/TextField/onTapOutside.html): > In the default implementation, [FocusNode.unfocus](https://api.flutter.dev/flutter/widgets/FocusNode/unfocus.html) will be called on the [focusNode](https://api.flutter.dev/flutter/material/TextField/focusNode.html) for this text field when a [PointerDownEvent](https://api.flutter.dev/flutter/gestures/PointerDownEvent-class.html) is received on another part of...

Try building the flutter bundle in debug mode. Release (AOT) mode needs different flags in initialization, but I haven’t looked into that yet.

The structs have some primitive kind of versioning (they include the byte size as the first element), so the layout is not the issue. The basic problem is that the...

You could use `flutter_rust_bridge::spawn` to run the async function within the sync closure. Just keep in mind that things might get messed up when it's called rapidly (like calls going...