6,055 questions
1
vote
1
answer
44
views
What is the better way to use fyne dialogs synchronously in Go?
I am programming a little software in Go called GoFileEncoder. For the file dialog boxes, I would like to use fyne.io/fyne/v2/dialog. Only, the functions dialog.ShowFileOpen() and dialog.ShowFileSave()...
0
votes
0
answers
60
views
OpenCvSharp4 in Debian 13 (bookworm) throws DllNotFoundException
Steps to reproduce
In Visal Studio create .NET 9 console application.
Add OpenCvSharp 4 Windows and Linux nuGet packages:
Create program.cs file:
using OpenCvSharp;
using Mat src = new Mat();
...
0
votes
0
answers
32
views
useEffect not triggering on web with Expo Router + Zustand (works on Android)
I’m using React Native with Expo Router and Zustand to handle authentication-based redirection. The logic works correctly on Android, but on Web the useEffect is not triggered, which prevents the user ...
0
votes
1
answer
70
views
Using CMake for a multi-chip embedded project [duplicate]
I'm working on a robot that consists of an ARM based SBC with an AVR based control board and would like to use CMake to manage the builds.
My desire is to just run CMake once and have the build ...
1
vote
0
answers
56
views
Flutter flutter_vlc_player crashes silently on Android with Signal Catcher: Wrote stack traces to tombstoned
I'm using the flutter_vlc_player
package in my Flutter app to play video streams. The video screen works on some devices, but on newer Android versions (e.g., Android 13/14), the app crashes silently ...
0
votes
0
answers
99
views
How to validate if a file/directory rename is successful in dart
I have a dart app which supports file/directory rename feature.
In order to achieve this, I am doing something like below:
io.FileSystemEntity entity;
final type = await getFileSystemItemType(...
1
vote
1
answer
66
views
How to check if a file/folder with a particular case-sensitive name exists in a particular directory
I have a dart app which is supported for 4 platforms: Windows, MacOS, Android and IOS.
There is a feature for file/directory rename in the app.
In order to achieve this, I am using dart::io's type API ...
0
votes
0
answers
30
views
Re-opening a file from handle in a cross platform way
Consider a situation where you have a file handle and would like to open a new file handle from it. You might want to do this because you need different access rights, or perhaps you want the two ...
0
votes
2
answers
60
views
How to exchange data over the network without internet [closed]
Is it possible to transfer data between two devices with different operating systems on the same network (without internet)?
1
vote
0
answers
41
views
Add XCFramework to React Native module
I have an XCFramework (written in Swift) that I need to include directly in a React Native module. Unfortunately, when I do something like this:
s.vendored_frameworks = 'ios/MyFramework.xcframework'
...
0
votes
0
answers
29
views
Turbo module conflict with web build
In my RN expo app, i added a Turbo Module in order to use c++ functions.
The problem is that whenever I import these functions, the web build (on which i don't really need the c++ functions, these are ...
0
votes
0
answers
39
views
React Native Expo
Good afternoon, today I wanted to create a new project on React Native Expo, created it as usual through the npx create-expo-app@latest command, then entered the npx expo start command and started QR ...
0
votes
0
answers
20
views
Why can't the exe package i make on mac initialize SQLite on windows?and the same goes for x64 packages
Why can't the exe package i make on mac initialize SQLite on windows?and the same goes for x64 packages.
I am building a cross platform desktop application using Electron and integrating SQLite.
But ...
0
votes
2
answers
180
views
EXC_BAD_ACCESS (SIGABRT) error occurring during app startup
Crash Type: EXC_BAD_ACCESS (SIGABRT) with KERN_INVALID_ADDRESS at 0x0000000000000000
Thread: Main thread (Thread 0)
Trigger Point: During CameraPlugin.register(with:) call
Device: iPhone ...
0
votes
1
answer
112
views
What is the easiest thing i can do to compile C++ CUDA code on Arch linux to Windows .exe? [duplicate]
I stumbled upon that issue while, it may be pretty easy to compile usual C++ code on Linux for windows executable, all of the dependencies required by my project are not "header-only" (for ...