Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
When I attempted to learn Iced I looked for a hello world example that doesn't have/need/use any kind of state, I just wanted a basic window with some text on it. I did not find such an example, so I made this one.
What was interesting is that the framework forces you to define a
Message
type and an update method which uses theMessage
type, but the Hello World case does not have any messages or state. You also have to return something from theupdate
method, again forcing you to use additional types that I didn't expect to have to learn about for a "Hello world" example. i.e.Task
.Hope this helps others looking for a simpler example than the 'Counter' example.