This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:math'; | |
import 'package:flutter/material.dart'; | |
MaterialColor generateMaterialColor(Color color) { | |
return MaterialColor(color.value, { | |
50: tintColor(color, 0.5), | |
100: tintColor(color, 0.4), | |
200: tintColor(color, 0.3), | |
300: tintColor(color, 0.2), | |
400: tintColor(color, 0.1), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From >>https://forums.meteor.com/t/how-to-config-meteor-command-in-git-bash-on-window-7/9703 | |
Q: I can't use meteor command in git bash on window 7 | |
A: $ meteor --version | |
bash: meteor: command not found | |
I try to add environment path ->;C:\Users\Rabbit\AppData\Local\.meteor. | |
But still don't work. | |
Go to this directory - C:\Users[your username]\AppData\Local\.meteor |