From: Dominik Csapak <d.csapak@proxmox.com>
To: yew-devel@lists.proxmox.com
Subject: [yew-devel] [PATCH yew-widget-toolkit 1/2] widget: list: expose `row-gap` and 'column-gap' property for grid layout
Date: Fri, 29 Aug 2025 15:46:17 +0200 [thread overview]
Message-ID: <20250829134625.2653743-1-d.csapak@proxmox.com> (raw)
this is useful to format the grid with gaps between columns and rows.
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
---
src/widget/list/mod.rs | 60 +++++++++++++++++++++++++++++++++++++++++-
1 file changed, 59 insertions(+), 1 deletion(-)
diff --git a/src/widget/list/mod.rs b/src/widget/list/mod.rs
index a5bce14..fe29314 100644
--- a/src/widget/list/mod.rs
+++ b/src/widget/list/mod.rs
@@ -3,7 +3,7 @@ use html::IntoPropValue;
use crate::prelude::*;
-use crate::props::{EventSubscriber, WidgetBuilder};
+use crate::props::{EventSubscriber, PwtSpace, WidgetBuilder};
use crate::widget::Container;
@@ -74,6 +74,50 @@ pub struct List {
#[builder(IntoPropValue, into_prop_value)]
pub grid_template_columns: AttrValue,
+ /// The list uses a html grid layout, and you can set the 'column-gap' property.
+ ///
+ /// ```
+ /// # use pwt::prelude::*;
+ /// # use pwt::widget::{List, ListTile};
+ /// # fn create_list_tile() -> List {
+ /// List::new(100, |pos| {
+ /// ListTile::new()
+ /// .with_child(html!{<span>{format!("{pos}")}</span>})
+ /// .with_child(html!{<span>{"A simple list tile"}</span>})
+ /// })
+ /// // Use a two column layout.
+ /// .grid_template_columns("auto 1fr")
+ /// .column_gap(1)
+ /// # }
+ /// ```
+ ///
+ /// see: <https://developer.mozilla.org/en-US/docs/Web/CSS/column-gap>
+ #[prop_or(PwtSpace::None)]
+ #[builder(Into, into)]
+ pub column_gap: PwtSpace,
+
+ /// The list uses a html grid layout, and you can set the 'row-gap' property.
+ ///
+ /// ```
+ /// # use pwt::prelude::*;
+ /// # use pwt::widget::{List, ListTile};
+ /// # fn create_list_tile() -> List {
+ /// List::new(100, |pos| {
+ /// ListTile::new()
+ /// .with_child(html!{<span>{format!("{pos}")}</span>})
+ /// .with_child(html!{<span>{"A simple list tile"}</span>})
+ /// })
+ /// // Use a two column layout.
+ /// .grid_template_columns("auto 1fr")
+ /// .row_gap(1)
+ /// # }
+ /// ```
+ ///
+ /// see: <https://developer.mozilla.org/en-US/docs/Web/CSS/row-gap>
+ #[prop_or(PwtSpace::None)]
+ #[builder(Into, into)]
+ pub row_gap: PwtSpace,
+
/// Virtual Scroll
///
/// Virtual scroll is enabled by default for lists with more than 30 rows.
@@ -270,6 +314,20 @@ impl PwtList {
.attribute("data-list-offset", self.scroll_info.offset.to_string())
.style("display", "grid")
.style("grid-template-columns", &props.grid_template_columns)
+ .style(
+ "column-gap",
+ match props.column_gap {
+ PwtSpace::None => None,
+ other => Some(AttrValue::from(other)),
+ },
+ )
+ .style(
+ "row-gap",
+ match props.row_gap {
+ PwtSpace::None => None,
+ other => Some(AttrValue::from(other)),
+ },
+ )
.style("--pwt-list-tile-min-height", min_height)
.style("position", "relative")
.style("top", format!("{}px", self.scroll_info.offset));
--
2.47.2
_______________________________________________
yew-devel mailing list
yew-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/yew-devel
next reply other threads:[~2025-08-29 13:46 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-29 13:46 Dominik Csapak [this message]
2025-08-29 13:46 ` [yew-devel] [PATCH yew-widget-toolkit 2/2] ui: list tile: implement on_activate callback Dominik Csapak
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250829134625.2653743-1-d.csapak@proxmox.com \
--to=d.csapak@proxmox.com \
--cc=yew-devel@lists.proxmox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox