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
[
{
"product_id" : 1,
"name" : "Chocolate Cake",
"imgUrl" : "https://github.com/Eng-MFQ/imges_uplader/blob/master/Dessert/chcolate%20cake.jpg?raw=true",
"description" : "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.",
"type" : "dessert",
"quantity" : 13,
"Price" : "1.80 JD"
},
import 'dart:async';
import 'dart:convert';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:http/http.dart' as http;
/// to see the response go to
/// https://gist.github.com/Eng-MFQ/483ac384385134dc3d5d30d236419b6c
import 'package:flutter/material.dart';
import 'DessertList.dart';
Dessert dessert;
class DessertDetails extends StatelessWidget {
static final routeName = '/DessertDetails';
@override
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
@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 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
/// this is your APP Main screen configuration
class MyApp extends StatelessWidget {
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
@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) {
@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 / 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());
}
}