flutter_trianglify
flutter_trianglify copied to clipboard
GridWidth should accept Device width
Not fit the device width for gridWidth.
gridWidth : MediaQuery.of(context).size.width
See the solution in example folder.
In example we achieve that with help of adding some width
MediaQuery.of(context).size.width + (200 * scaleFactor),
How can we add full with without adding those 200*scalefactor
This code affects in Samsung S9, Pixel 2 and some more devices.
This (200 * scalefactor) is very important, you can for example put the 200 to 400 or decrease if there is way and remove the scalefactor
It ok??