flutter_tile_grid 0.1.0 copy "flutter_tile_grid: ^0.1.0" to clipboard
flutter_tile_grid: ^0.1.0 copied to clipboard

outdated

A board of tiles organized in a grid.

Flutter Tile Grid #

A board of tiles organized in a grid which the user can pan and zoom.

Quick Start #

TileGrid(
  builder: (context, tile, x, y, size) {
    return Center(child: Text(tile, style: TextStyle(fontSize: size - 10)));
  },
  grid: [
    ['A', 'B', 'C'],
    ['D', 'E', 'F'],
    ['G', 'H', 'I'],
  ],
  originX: 1,
  originY: 1,
),

This will display a grid of characters which you can pan and zoom in.

1
likes
15
pub points
0%
popularity

Publisher

unverified uploader

A board of tiles organized in a grid.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_tile_grid