<feed xmlns='http://www.w3.org/2005/Atom'>
<title>iced/examples/pokedex/src, branch master</title>
<subtitle>A cross-platform GUI library for Rust, inspired by Elm</subtitle>
<link rel='alternate' type='text/html' href='https://bunny.garden/forks/iced/'/>
<entry>
<title>Re-export variants of `Length` and `alignment` types</title>
<updated>2024-07-12T16:12:34+00:00</updated>
<author>
<name>Héctor Ramón Jiménez</name>
<email>hector@hecrj.dev</email>
</author>
<published>2024-07-12T16:12:34+00:00</published>
<link rel='alternate' type='text/html' href='https://bunny.garden/forks/iced/commit/?id=76737351ea9e116291112b7d576d9ed4f6bb5c2a'/>
<id>76737351ea9e116291112b7d576d9ed4f6bb5c2a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Introduce helper methods for alignment for all widgets</title>
<updated>2024-07-12T13:14:43+00:00</updated>
<author>
<name>Héctor Ramón Jiménez</name>
<email>hector@hecrj.dev</email>
</author>
<published>2024-07-12T13:11:30+00:00</published>
<link rel='alternate' type='text/html' href='https://bunny.garden/forks/iced/commit/?id=f9dd5cbb099bbe44a57b6369be54a442363b7a8d'/>
<id>f9dd5cbb099bbe44a57b6369be54a442363b7a8d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove `load` method from `application` and `daemon`</title>
<updated>2024-07-08T22:28:40+00:00</updated>
<author>
<name>Héctor Ramón Jiménez</name>
<email>hector@hecrj.dev</email>
</author>
<published>2024-07-08T22:28:40+00:00</published>
<link rel='alternate' type='text/html' href='https://bunny.garden/forks/iced/commit/?id=e86920be5b9984b4eb511e5e69efdcbf6ef3d8e4'/>
<id>e86920be5b9984b4eb511e5e69efdcbf6ef3d8e4</id>
<content type='text'>
If you need to run a `Task` during boot, use
`run_with` instead!
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If you need to run a `Task` during boot, use
`run_with` instead!
</pre>
</div>
</content>
</entry>
<entry>
<title>Introduce `daemon` API and unify shell runtimes</title>
<updated>2024-06-18T23:53:40+00:00</updated>
<author>
<name>Héctor Ramón Jiménez</name>
<email>hector@hecrj.dev</email>
</author>
<published>2024-06-18T23:53:40+00:00</published>
<link rel='alternate' type='text/html' href='https://bunny.garden/forks/iced/commit/?id=341c9a3c12aa9d327ef1d8f168ea0adb9b5ad10b'/>
<id>341c9a3c12aa9d327ef1d8f168ea0adb9b5ad10b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace `Command` with a new `Task` API with chain support</title>
<updated>2024-06-13T23:47:39+00:00</updated>
<author>
<name>Héctor Ramón Jiménez</name>
<email>hector@hecrj.dev</email>
</author>
<published>2024-06-13T23:47:39+00:00</published>
<link rel='alternate' type='text/html' href='https://bunny.garden/forks/iced/commit/?id=a25b1af45690bdd8e1cbb20ee3a5b1c4342de455'/>
<id>a25b1af45690bdd8e1cbb20ee3a5b1c4342de455</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' into feat/text-macro</title>
<updated>2024-05-23T11:29:45+00:00</updated>
<author>
<name>Héctor Ramón Jiménez</name>
<email>hector0193@gmail.com</email>
</author>
<published>2024-05-23T11:29:45+00:00</published>
<link rel='alternate' type='text/html' href='https://bunny.garden/forks/iced/commit/?id=d8ba6b0673a33724a177f3a1ba59705527280142'/>
<id>d8ba6b0673a33724a177f3a1ba59705527280142</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Introduce `center` widget helper</title>
<updated>2024-05-03T07:11:46+00:00</updated>
<author>
<name>Héctor Ramón Jiménez</name>
<email>hector@hecrj.dev</email>
</author>
<published>2024-05-03T07:11:46+00:00</published>
<link rel='alternate' type='text/html' href='https://bunny.garden/forks/iced/commit/?id=15057a05c118dafcb8cf90d4119e66caaa6026c5'/>
<id>15057a05c118dafcb8cf90d4119e66caaa6026c5</id>
<content type='text'>
... and also make `center_x` and `center_y` set
`width` and `height` to `Length::Fill`, respectively.

This targets the most common use case when centering
things and removes a bunch of boilerplate as a result.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
... and also make `center_x` and `center_y` set
`width` and `height` to `Length::Fill`, respectively.

This targets the most common use case when centering
things and removes a bunch of boilerplate as a result.
</pre>
</div>
</content>
</entry>
<entry>
<title>Make `image::Id` actually opaque</title>
<updated>2024-04-30T23:52:49+00:00</updated>
<author>
<name>Héctor Ramón Jiménez</name>
<email>hector@hecrj.dev</email>
</author>
<published>2024-04-30T23:52:49+00:00</published>
<link rel='alternate' type='text/html' href='https://bunny.garden/forks/iced/commit/?id=58ea914ad21ea9c5ae7b7b1c167ed084c9ddb07a'/>
<id>58ea914ad21ea9c5ae7b7b1c167ed084c9ddb07a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix: run `cargo fmt`</title>
<updated>2024-03-18T21:24:57+00:00</updated>
<author>
<name>Richard Custodio</name>
<email>richardcustodio@pm.me</email>
</author>
<published>2024-03-18T21:24:57+00:00</published>
<link rel='alternate' type='text/html' href='https://bunny.garden/forks/iced/commit/?id=8ed62541af8cd16760b59d8f0a49d619d78f592e'/>
<id>8ed62541af8cd16760b59d8f0a49d619d78f592e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor: replace `text(format!(` with `text` macro</title>
<updated>2024-03-18T20:08:56+00:00</updated>
<author>
<name>Richard Custodio</name>
<email>richardcustodio@pm.me</email>
</author>
<published>2024-03-18T20:08:56+00:00</published>
<link rel='alternate' type='text/html' href='https://bunny.garden/forks/iced/commit/?id=bf9bbf4a3edf22f21c79901999cc104cb29fccce'/>
<id>bf9bbf4a3edf22f21c79901999cc104cb29fccce</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
