Any help is appreciated, as I have tried to figure this out and can not. Im making a game that displays about 20 tiles randomly for each new game. I currently have a "List" widget with all 20 tiles as "Flatbutton" widgets. Then I randomize them with a "randomNumGen..shuffle" function and display them in random order inside of a "SliverGrid" (with 5 across, making 4 rows). I then want the user to click on the one they want, and then click on the spot (an empty Slivergrid below) that he wants to place that tile in (it's the player's home base).
The problem is that I can't figure out how to associate specific "data" with each tile. For example..
Tile 1 = 5 energy and 2 people.
Tile 2 = 3 energy and 4 people
Tile 3 = 4 energy and 3 people.... and so on for all 20 tiles.
Once they become randomized, I cant figure out how to 'give' that data to the user who selected that tile, so that the user receives '5 energy and 2 people' if they selected Tile 1 (which is in a random spot).
import 'package:flutter/material.dart';
import 'dart:math';
class TileData {
int position;
int energy;
int people;
TileData({this.position, this.energy, this.people});
}
// The 'add' below is causing the error "The expression here has a type of void and therefore can not be used"
List<TileData> list=[];
list.add(TileData(
position:1,
energy:2,
people:4
));
list.add(TileData(
position:2,
energy:5,
people:3
));
// The "tileList" below is causing error "Undefined name tileList"
List<FlatButton> buttons = List.generate(tileList.length, (position) {
TileData data = tileList[position];
return FlatButton(
child: Text('${data.position}'),
onPressed: () {
print(data.energy);
print(data.people);
});
});
You can make a simply create a class having your attributes.
Then you can make a
List<TileData>
Then randomise it with the below function. List shuffle(List items) { var random = new Random();
Then you can create a list of FlatButtons with
List.generate()
where you can assign the desired job with exact data.