mirror of
https://github.com/flutter/samples.git
synced 2026-03-25 13:51:35 +00:00
* add package:http dependency in dad_jokes * add package:http dependency in filipino_cuisine * don't build package:http demos until flutter/flutter#34858 is resolved * update gallery * update github_dataviz * update particle_background * don't build github_dataviz (uses package:http) * update slide_puzzle * update spinning_square * update timeflow * update vision_challenge * update charts * update dad_jokes * update filipino cuisine * ignore build output * update timeflow and vision_challenge * update slide_puzzle * don't commit build/ directory * move preview.png images to assets * fix path url join * update readme * update web/readme.md
40 lines
1.1 KiB
Dart
40 lines
1.1 KiB
Dart
import 'core/puzzle_animator.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class PuzzleFlowDelegate extends FlowDelegate {
|
|
final Size _tileSize;
|
|
final PuzzleProxy _puzzleProxy;
|
|
|
|
PuzzleFlowDelegate(this._tileSize, this._puzzleProxy, Listenable repaint)
|
|
: super(repaint: repaint);
|
|
|
|
@override
|
|
Size getSize(BoxConstraints constraints) => Size(
|
|
_tileSize.width * _puzzleProxy.width,
|
|
_tileSize.height * _puzzleProxy.height);
|
|
|
|
@override
|
|
BoxConstraints getConstraintsForChild(int i, BoxConstraints constraints) =>
|
|
BoxConstraints.tight(_tileSize);
|
|
|
|
@override
|
|
void paintChildren(FlowPaintingContext context) {
|
|
for (var i = 0; i < _puzzleProxy.length; i++) {
|
|
final tileLocation = _puzzleProxy.location(i);
|
|
context.paintChild(
|
|
i,
|
|
transform: Matrix4.translationValues(
|
|
tileLocation.x * _tileSize.width,
|
|
tileLocation.y * _tileSize.height,
|
|
i.toDouble(),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
@override
|
|
bool shouldRepaint(covariant PuzzleFlowDelegate oldDelegate) =>
|
|
_tileSize != oldDelegate._tileSize ||
|
|
!identical(oldDelegate._puzzleProxy, _puzzleProxy);
|
|
}
|