Skip to content

Commit

Permalink
Update README for new ProgressView constructor support
Browse files Browse the repository at this point in the history
  • Loading branch information
aabewhite committed Dec 26, 2024
1 parent 770905c commit 01b2dc1
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -749,13 +749,19 @@ Support levels:
<td><code>Picker</code> (<a href="https://skip.tools/docs/components/picker/">example</a>)</td>
</tr>
<tr>
<td>🟡</td>
<td>🟢</td>
<td>
<details>
<summary><code>ProgressView</code> (<a href="https://skip.tools/docs/components/progressview/">example</a>)</summary>
<ul>
<li><code>init()</code></li>
<li><code>init(value: Double?, total: Double = 1.0)</code></li>
<li><code>init(@ViewBuilder label: () -> any View)</code></li>
<li><code>init(_ titleKey: LocalizedStringKey)</code></li>
<li><code>init(_ title: String)</code></li>
<li><code>init(value: Double?, total: Double = 1.0, @ViewBuilder label: () -> any View)</code></li>
<li><code>init(_ titleKey: LocalizedStringKey, value: Double?, total: Double = 1.0)</code></li>
<li><code>init(_ title: String, value: Double?, total: Double = 1.0)</code></li>
</ul>
</details>
</td>
Expand Down

0 comments on commit 01b2dc1

Please sign in to comment.