Skip to content

Instantly share code, notes, and snippets.

View brucevang's full-sized avatar
Making

Bruce Vang brucevang

Making
View GitHub Profile
@brucevang
brucevang / ListViewJSONLocal.dart
Created March 26, 2019 20:20
ListViewJSONLocal.dart
import 'package:flutter/material.dart';
// Needed for JSON from URL
import 'dart:async';
import 'package:http/http.dart' as http;
// Needed to Conver JSON Network and Local file
import 'dart:convert';
// Needed for JSON from local
@brucevang
brucevang / hextoflutter.dart
Created February 9, 2019 17:00
Method to get Hex Value and Return to Flutter Color
int getColorHexFromStr(String colorStr) {
colorStr = "FF" + colorStr;
colorStr = colorStr.replaceAll("#", "");
int val = 0;
int len = colorStr.length;
for (int i = 0; i < len; i++) {
int hexDigit = colorStr.codeUnitAt(i);
if (hexDigit >= 48 && hexDigit <= 57) {
val += (hexDigit - 48) * (1 << (4 * (len - 1 - i)));
} else if (hexDigit >= 65 && hexDigit <= 70) {
@brucevang
brucevang / uiToggle.cs
Created November 6, 2018 06:38
Unity Set UI Active
public void OpenPanel() {
/* This turns on a panel
if (Panel != null) {
Panel.SetActive(true);
}
*/
// This toggles a panel
// LoadingScreenManager
// --------------------------------
// built by Martin Nerurkar (http://www.martin.nerurkar.de)
// for Nowhere Prophet (http://www.noprophet.com)
//
// Licensed under GNU General Public License v3.0
// http://www.gnu.org/licenses/gpl-3.0.txt
using UnityEngine;
using UnityEngine.UI;
@brucevang
brucevang / animation-bounce
Created June 27, 2014 22:58
Animation: Bounce
// TODO: find my bounce CSS.

Sublime Text 2 – Useful Shortcuts (Mac OS X)

General

⌘T go to file
⌘⌃P go to project
⌘R go to methods
⌃G go to line
⌘KB toggle side bar
⌘⇧P command prompt