v3.0.0maze
一個簡單的 Flutter 迷宮遊戲。它同時也作為 CustomPainter 的範例。
24喜歡 36近 30 天下載150Pub 分數
AndroidiOSmacOSWindowsLinux
Flutter 中的迷宮遊戲
{"sdk":"flutter"}^2.0.0^0.13.0^2.0.0{"sdk":"flutter"}^2.0.0以下為英文專案原文快照,最新內容請造訪 GitHub。
A simple maze game in Flutter. It also serves as a CustomPainter example.
https://raw.githubusercontent.com/pblinux/maze/package/img/maze.pngIn another project, I needed to create a "simple" maze game that can be used in low-end devices, so game engine was not an option.
Suddenly, I found a way to do it in pure Android.
So, this is a "port" of that saviour example.
pub Project Status: Active License: MIT style: very good analysis
You can use it in your project, you only need to add the dependency:
dependencies:
flutter:
sdk: flutter
maze_game: 3.0.0
Now you can create your Maze:
Maze(
player: MazeItem(
'https://image.flaticon.com/icons/png/512/808/808433.png',
ImageType.network),
columns: 6,
rows: 12,
wallThickness: 4.0,
wallColor: Theme.of(context).primaryColor,
finish: MazeItem(
'https://image.flaticon.com/icons/png/512/1506/1506339.png',
ImageType.network),
onFinish: () => print('Hi from finish line!'))