Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-09-04 22:08:32 +08:00
parent 172389b12b
commit 7e1e42181c
13 changed files with 219 additions and 194 deletions

View File

@@ -1314,10 +1314,10 @@ class _RenderListTile extends RenderBox
Iterable<RenderBox> get children {
final RenderBox? title = childForSlot(_ListTileSlot.title);
return <RenderBox>[
if (leading != null) leading!,
if (title != null) title,
if (subtitle != null) subtitle!,
if (trailing != null) trailing!,
?leading,
?title,
?subtitle,
?trailing,
];
}