Skip to content

Instantly share code, notes, and snippets.

@av
Created September 26, 2019 19:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save av/857bb8a5f43964c5f7da469395bce2d4 to your computer and use it in GitHub Desktop.
Save av/857bb8a5f43964c5f7da469395bce2d4 to your computer and use it in GitHub Desktop.
Flutter: texture generator, white dots
// ...
/// White dots each 20 pixels
if (x % 20 == 0 && y % 20 == 0) {
return 0xffffffff;
}
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment