flutter 3.44.0

Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-05-16 22:51:33 +08:00
parent ac0a34803f
commit e737a50804
71 changed files with 1362 additions and 535 deletions

View File

@@ -115,15 +115,13 @@ class BounceMarquee extends Marquee {
abstract class MarqueeRender extends RenderBox
with RenderObjectWithChildMixin<RenderBox> {
MarqueeRender({
required Axis direction,
required double velocity,
required this._direction,
required this._velocity,
required double spacing,
required this.clipBehavior,
required ContextSingleTicker provider,
}) : _ticker = provider,
_spacing = spacing,
_velocity = velocity,
_direction = direction,
assert(spacing.isFinite && !spacing.isNaN);
Clip clipBehavior;