Tile
Try correcting the name to the name of an existing method, or defining a method named 'Tile'. return Tile( ^^^^
What?
using version 0.6.2 if I use the snippet from the readme MasonryGridView.count( crossAxisCount: 4, mainAxisSpacing: 4, crossAxisSpacing: 4, itemBuilder: (context, index) { return Tile( index: index, extent: (index % 5 + 1) * 100, ); }, );
the error is The method 'Tile' isn't defined for the type 'MasonryTestPage'. Try correcting the name to the name of an existing method, or defining a method named 'Tile'
Cannot find Tile() in MasonryGridView.builder().
How can I be able to find the Tile() widget inside Masonry?
I am using the latest version on Android @letsar
same problem here. where is the tile class?
To anyone still facing this issue consider looking at the example app. The Tile widget is a customized and not a property in the package
Yes it was an example widget, sorry for the confusion
I wouldn't close this issue since the example must be something working regarding the context, so I highly recommend modifying the example in the README