process_loop 0.0.2 copy "process_loop: ^0.0.2" to clipboard
process_loop: ^0.0.2 copied to clipboard

Runs a looping process. Get a stream of stout is obtained from the process.

process_loop #

A new Flutter package project.

Example #

ProgressLoop(
      executable: "echo",
      arguments: List.of(["hello"]),
      loop: null,
    )

test

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>

to

<dict>
	<key>com.apple.security.app-sandbox</key>
	<false/>
</dict>
0
likes
40
pub points
0%
popularity

Publisher

unverified uploader

Runs a looping process. Get a stream of stout is obtained from the process.

Repository (GitHub)
View/report issues

Documentation

Documentation

License

MIT (LICENSE)

Dependencies

flutter, meta

More

Packages that depend on process_loop