Skip to content

Instantly share code, notes, and snippets.

View EmmanuelJoshua's full-sized avatar
👽
Welcome.

Emmanuel Joshua EmmanuelJoshua

👽
Welcome.
View GitHub Profile
class PeopleModel {
String? name;
String? height;
String? mass;
String? hairColor;
String? skinColor;
String? eyeColor;
String? birthYear;
String? gender;
String? homeworld;
@EmmanuelJoshua
EmmanuelJoshua / README.txt
Created May 18, 2022 11:30
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
REMIX DEFAULT WORKSPACE
Remix default workspace is present when:
i. Remix loads for the very first time
ii. A new workspace is created
iii. There are no files existing in the File Explorer
This workspace contains 3 directories:
1. 'contracts': Holds three contracts with different complexity level, denoted with number prefix in file name.
import 'dart:async';
import 'package:flutter/services.dart';
/// Communicates the current state of the audio player.
enum AudioPlayerState {
/// Player is stopped. No file is loaded to the player. Calling [resume] or
/// [pause] will result in exception.
STOPPED,
@EmmanuelJoshua
EmmanuelJoshua / customslideup.dart
Created July 24, 2020 03:14
Custom modals using ModalRoute
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
class CustomSlideUp extends ModalRoute {
@override