0 purchases
process loop
process_loop #
A new Flutter package project.
Example #
ProgressLoop(
executable: "echo",
arguments: List.of(["hello"]),
loop: null,
)
copied to clipboard
MacOS
If you want to run executable in a MacOS flutter context, you need to disable sandbox mode. See
Removing sandboxing and
ProcessException: Operation not permitted on macOS
In macos/Runner/DebugProfile.entitlements and macos/Runner/Release.entitlements, change:
<dict>
<key>com.apple.security.app-sandbox</key>
<true/>
</dict>
copied to clipboard
to
<dict>
<key>com.apple.security.app-sandbox</key>
<false/>
</dict>
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.