⌘T | go to file |
⌘⌃P | go to project |
⌘R | go to methods |
⌃G | go to line |
⌘KB | toggle side bar |
⌘⇧P | command prompt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void OpenPanel() { | |
/* This turns on a panel | |
if (Panel != null) { | |
Panel.SetActive(true); | |
} | |
*/ | |
// This toggles a panel |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// TODO: find my bounce CSS. |