1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-12 15:58:32 +00:00

update slide_puzzle for beta channel (#419)

includes PR: https://github.com/kevmoo/slide_puzzle/pull/5
This commit is contained in:
John Ryan
2020-04-23 09:33:43 -07:00
committed by GitHub
parent ed284c78bd
commit ef0114c210
17 changed files with 421 additions and 513 deletions

View File

@@ -1,5 +1,5 @@
import 'package:flutter/material.dart';
import 'src/core/puzzle_animator.dart';
import 'src/flutter.dart';
import 'src/puzzle_home_state.dart';
void main() => runApp(PuzzleApp());
@@ -21,7 +21,7 @@ class PuzzleApp extends StatelessWidget {
class _PuzzleHome extends StatefulWidget {
final int _rows, _columns;
const _PuzzleHome(this._rows, this._columns, {Key key}) : super(key: key);
const _PuzzleHome(this._rows, this._columns);
@override
PuzzleHomeState createState() =>