Skip to content

Instantly share code, notes, and snippets.

View Eng-MFQ's full-sized avatar
🏠
Working from home

Muwaffaq imam Eng-MFQ

🏠
Working from home
View GitHub Profile
Ludo Bagman – Head of the Department of Magical Games and Sports within the Ministry of Magic.
Bathilda Bagshot – Author of A History of Magic, and the great aunt of Gellert Grindelwald.
Katie Bell – Gryffindor Quidditch Chaser one year above Harry Potter. Member of Dumbledore's Army.
Cuthbert Binns – ghost, History of Magic professor.
Phineas Nigellus Black – Great-great-grandfather of Sirius Black and former Hogwarts headmaster. His painting hangs in the office and assists the current headmaster.
Sirius Black – Harry's godfather who was a close friend of Harry's father James. Escapee from Azkaban prison and member of the Order of the Phoenix. Killed in the Battle of the Department of Mysteries by his cousin Bellatrix Lestrange.
Amelia Bones – Head of the Department of Magical Law Enforcement, and the aunt of Susan Bones. Killed by Lord Voldemort.
Susan Bones – Hufflepuff student in Harry's year. Member of Dumbledore's Army.
Terry Boot – Ravenclaw student in Harry's year. Member of Dumbledore's Army.
Lavende
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'Menu.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
@Eng-MFQ
Eng-MFQ / NavigatorPushedNamed.dart
Last active October 13, 2021 06:14
its example for navigator flutter course
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'Menu.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
@Eng-MFQ
Eng-MFQ / MenuScreen.dart
Created October 2, 2021 08:29
Good description
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(home: MenuScreen());
}
}
@Eng-MFQ
Eng-MFQ / jsonTest.json
Created September 20, 2021 20:10
parse me if you can !
[
{
"id": "3a830820-c2a9-4ee2-6a8e-08d97c170790",
"name": "اربد",
"address": "اربد",
"addressCountry": null,
"phone": null,
"email": null,
"timeZone": null,
"countersNumber": 0,
@Eng-MFQ
Eng-MFQ / FlutterStarterColumn.dart
Created October 10, 2020 07:56
FlutterStarterColumn
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
/// this is your APP Main screen configuration
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData(
// to change your app color change this
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
/// this is your APP Main screen configuration
class MyApp extends StatelessWidget {
@Eng-MFQ
Eng-MFQ / MoviesList.txt
Created August 5, 2019 20:36
Java Level 2 Project 1 HangMan
the shawshank redemption
the godfather
the dark knight
schindler's list
pulp fiction
the lord of the rings
the good the bad and the ugly
fight club
the lord of the rings
forrest gump
import 'dart:async';
import 'dart:convert';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:http/http.dart' as http;
import 'DessertDetails.dart';
/// to see the response go to