Skip to content

Instantly share code, notes, and snippets.

View JaveedIshaq's full-sized avatar
🇵🇰
Passion to help others

Javeed Ishaq JaveedIshaq

🇵🇰
Passion to help others
View GitHub Profile
@JaveedIshaq
JaveedIshaq / post.md
Created January 27, 2016 15:24 — forked from kbond/post.md
Ubuntu LAMP Development Environment Setup

Install git:

sudo apt-get install git

Configure Git:

touch ~/.gitignore_global
git config --global core.excludesfile ~/.gitignore_global
git config --global user.name "Your Name"

git config --global user.email "Your Email"

@JaveedIshaq
JaveedIshaq / cloudSettings
Created January 10, 2018 02:37 — forked from spencercarli/bd3d4befe38185704bf0fc875e9deed6|configuration.json
Visual Studio Code Settings Sync Gist
{"lastUpload":"2018-01-09T02:21:28.135Z","extensionVersion":"v2.8.7"}
void main() {
List<String> myList = [
'Angela',
'James',
'Katie',
'Jack',
];
}
@JaveedIshaq
JaveedIshaq / Future-async-await-in-dart.dart
Last active December 8, 2019 12:32
Future-async-await-in-dart.dart
import 'dart:io';
void main() {
taskRunner();
}
void taskRunner() async {
funtionOne();
String result = await funtionTwo();
funtionThree(result);

#Android-App-Developer

We are looking for a Senior Android developer responsible for the development and maintenance of applications aimed at a vast number of diverse Android devices. Your primary focus will be the development of Android applications and their integration with back-end services. You will be working alongside other engineers and developers working on different layers of the infrastructure. Therefore, commitment to collaborative problem solving, sophisticated design, and creating quality products is essential.

##Responsibilities:

Understanding of mobile technologies and architectures, such as MVP, MVVM, RxJava Excellent Object Oriented, Java and Android Programming skills

@JaveedIshaq
JaveedIshaq / dart-language-notes.txt
Last active December 11, 2019 01:09
Dart Lang notes
1- Class Names always starts with a capital letter
2- How to create a Constructor of class in Dart Language ==> it is must t learn
3- Void function which retuns nothing
4- if there is need to return some data from a function it must write the type of data before the functions name to be returned
5- NULL Aware Operator in dart
@JaveedIshaq
JaveedIshaq / main.dart
Last active March 2, 2020 18:57
flutter-Gesture Detector Widget with tap Example
// this gist demonstrate the Flutter Gesture Detector Widget
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
@JaveedIshaq
JaveedIshaq / main.dart
Last active March 8, 2020 18:26
Passing Data with Route in Flutter
import 'package:flutter/material.dart';
class Article {
String name, detail;
Article(this.name, this.detail);
}
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@JaveedIshaq
JaveedIshaq / main.dart
Created March 8, 2020 19:14
Passing Data from child widget to parent widget
import 'package:flutter/material.dart';
class Article {
String name, detail;
Article(this.name, this.detail);
}
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
final articleList = List<Article>.generate(20, (i) {
Whole learning to develop flutter Mobile App Development, I have come accros many questions.
So i am writing down these question,here, as soon ther arise.
Whene ever i found answers to these questions, i will be posting answers.
1- What is the production practices to follow when implementing email authentication using Firebase in Flutter. ?
2- what is an Mvvm Style architecture with Provider for UI / Business logic separation and get_it as a service locator?
3- It’s fun, and coming from native development it’s very exciting to work with something like Flutter.