Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View mukeshsolanki's full-sized avatar
🎯
Focusing

Mukesh Solanki mukeshsolanki

🎯
Focusing
View GitHub Profile
@h4040
h4040 / home_page.dart
Created April 18, 2018 02:26
NewsReader
import 'package:flutter/material.dart';
import 'package:http/http.dart' as http;
import 'dart:convert';
import 'package:url_launcher/url_launcher.dart';
import 'package:intl/intl.dart';
import 'dart:async';
import 'package:shared_preferences/shared_preferences.dart';
import 'package:share/share.dart' as sharing;
import 'package:transparent_image/transparent_image.dart';
@mukeshsolanki
mukeshsolanki / .gitconfig
Last active April 17, 2024 03:47
My Git Config
[user]
name = Mukesh Solanki
email = me@mukeshsolanki.com
[alias]
co = checkout
cob = checkout -b
st = status
cm = commit -m
amend = commit --amend -m
pu = !git push origin `git branch --show-current`