Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-07-20 22:44:09 +08:00
parent db65e7df76
commit 7617bb692a
21 changed files with 279 additions and 280 deletions

View File

@@ -48,23 +48,6 @@ class TranslucentColumn extends Flex {
spacing: spacing,
);
}
@override
void updateRenderObject(
BuildContext context,
RenderTranslucentColumn renderObject,
) {
renderObject
..direction = direction
..mainAxisAlignment = mainAxisAlignment
..mainAxisSize = mainAxisSize
..crossAxisAlignment = crossAxisAlignment
..textDirection = getEffectiveTextDirection(context)
..verticalDirection = verticalDirection
..textBaseline = textBaseline
..clipBehavior = clipBehavior
..spacing = spacing;
}
}
class RenderTranslucentColumn extends RenderFlex {