Files
AndroidJetpack/ComposeDebugDrawer/documentation/_include/screenshots.md
T
coco 723ce1af5c a
2026-07-03 15:12:48 +08:00

21 lines
467 B
Markdown

{% if project["library"]["screenshots"] | length > 0 %}
## :camera: Screenshots
{% for screenshot in project["library"]["screenshots"] %}
<table>
<thead>
<tr><th>{{ screenshot["name"] }}</th><th></th></tr>
</thead>
<tbody>
<tr>
{% for image in screenshot["images"] %}
<td><img src="{{ image }}" alt="{{ image }}" height="400"></td>
{% endfor %}
</tr>
</tbody>
</table>
{% endfor %}
{% endif %}