Hello, is there some blog/video/tutorial that show...
# compose-desktop
a
Hello, is there some blog/video/tutorial that shows how to create an "install process or steps" for a Compose Desktop app? for example I need to check if the user has Java installed, if not then show some process and try to install java, I guess that is possible?
k
compose desktop app contains java inside. there is no need to ask user
a
I know, that was just an example
m
You'd implement it like any other feature, by writing some code that e.g. detects if the user has Java installed, showing a window for relevant UI, etc.
s
Save yourself a lot of pain and use: https://conveyor.hydraulic.dev/15.1/tutorial/new/
m
@Stan van der Bend Conveyor does not have functionality to create any custom steps or custom GUI of any kind like OP needs. It wouldn't be possible to use it as OP needs to, as their example is, check if the user has Java installed and direct them to install it.
👍 1
I use Conveyor, and I'm doing what OP is asking about once Conveyor is all done and my app is "installed". You can think of it as an onboarding flow if that helps visualize it, except it's part of the initial setup / installation, from the users point of view.