mirror of https://github.com/flutter/samples.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
735 B
30 lines
735 B
import 'package:flutter/material.dart';
|
|
import 'src/core/puzzle_animator.dart';
|
|
import 'src/puzzle_home_state.dart';
|
|
|
|
void main() => runApp(PuzzleApp());
|
|
|
|
class PuzzleApp extends StatelessWidget {
|
|
final int rows, columns;
|
|
|
|
PuzzleApp({int columns = 4, int rows = 4})
|
|
: columns = columns ?? 4,
|
|
rows = rows ?? 4;
|
|
|
|
@override
|
|
Widget build(BuildContext context) => MaterialApp(
|
|
title: 'Slide Puzzle',
|
|
home: _PuzzleHome(rows, columns),
|
|
);
|
|
}
|
|
|
|
class _PuzzleHome extends StatefulWidget {
|
|
final int _rows, _columns;
|
|
|
|
const _PuzzleHome(this._rows, this._columns, {Key key}) : super(key: key);
|
|
|
|
@override
|
|
PuzzleHomeState createState() =>
|
|
PuzzleHomeState(PuzzleAnimator(_columns, _rows));
|
|
}
|