Skip to content

Instantly share code, notes, and snippets.

@hsSam
Created June 24, 2019 08:37
Show Gist options
  • Save hsSam/699fe5376c9d88ba903887de14485ccc to your computer and use it in GitHub Desktop.
Save hsSam/699fe5376c9d88ba903887de14485ccc to your computer and use it in GitHub Desktop.
[flutter random] random value #flutter
final random = Random();
// Generate a random width and height.
_width = random.nextInt(300).toDouble();
_height = random.nextInt(300).toDouble();
final r = random.nextInt(256);
final g = random.nextInt(256);
final b = random.nextInt(256);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment