Skip to content

Instantly share code, notes, and snippets.

View tusharhow's full-sized avatar
🏅
Coffee, Tea, Code

Tushar Mahmud tusharhow

🏅
Coffee, Tea, Code
View GitHub Profile
@tusharhow
tusharhow / animated_footer.dart
Created March 25, 2024 14:39
Animated footer using Flutter Web
@tusharhow
tusharhow / gradient.dart
Created March 1, 2024 11:43
Did you know that in Flutter, bringing gradient colors to your text is a breeze? 🚀💻 Just sprinkle a bit of code magic:
Text(
"Gradient Text Example",
style: TextStyle(
fontSize: 50.0,
fontWeight: FontWeight.bold,
foreground: Paint()
..shader = const LinearGradient(
colors: <Color>[
Colors.red,
Colors.blue,

Setting up a new Git Repo

##Create a new repository on the command line

touch README.md
git init
git add README.md
git commit -m "first commit"

git remote add origin git@github.com:alexpchin/.git