I hereby claim:
- I am projectinitiative on github.
- I am kylepetryszak (https://keybase.io/kylepetryszak) on keybase.
- I have a public key ASCkjdmSHqiIEnGB9101TqFuZEamxp1Ebhq8NB0XlprOuwo
To claim this, I am signing this object:
#!/usr/bin/env bash | |
for D in `find . -maxdepth 1 -mindepth 1 -type d` | |
do | |
echo $D | |
cd $D | |
git pull | |
cd .. | |
done |
I hereby claim:
To claim this, I am signing this object:
FutureBuilder( | |
future: _getUID(), | |
builder: (BuildContext context, AsyncSnapshot<String> snapshot) { | |
if (snapshot.connectionState != ConnectionState.done) | |
return new Center( | |
child: new Container(child: CircularProgressIndicator())); | |
return new StreamBuilder( | |
stream: _getStream(snapshot.data.toString()), | |
builder: (BuildContext context, userSnapshot) { | |
// TEMPORARY FIX |
using System; | |
/* | |
Created by Kyle on 3/8/2015. | |
Note: This class is simply a calculation/String formatting class designed to calculate the elapsed time between two clock readings. | |
To fully integrate this into a practical use please use a thread to call either getElapsedTime or getElapsedMilliTime and display that text to the screen. | |
*/ | |
namespace CommonLibrary.Helpers | |
{ | |
public class Stopwatch |
// FlutterLicense utility class | |
import 'package:flutter/foundation.dart'; | |
class FlutterLicense extends LicenseEntry { | |
final packages; | |
final paragraphs; | |
FlutterLicenses(this.packages, this.paragraphs); | |
} |