start new:
tmux
start new with session name:
tmux new -s myname
class ScrollViewWithHeight extends StatelessWidget { | |
final Widget child; | |
const ScrollViewWithHeight({Key key, this.child}) : super(key: key); | |
@override | |
Widget build(BuildContext context) { | |
return new LayoutBuilder(builder: (BuildContext context, BoxConstraints constraints) { | |
return new SingleChildScrollView( | |
child: new ConstrainedBox( |
import * as crypto from 'crypto'; | |
export const md5 = (contents: string) => crypto.createHash('md5').update(contents).digest("hex"); |
/* | |
Distributed under The MIT License: | |
http://opensource.org/licenses/mit-license.php | |
Permission is hereby granted, free of charge, to any person obtaining | |
a copy of this software and associated documentation files (the | |
"Software"), to deal in the Software without restriction, including | |
without limitation the rights to use, copy, modify, merge, publish, | |
distribute, sublicense, and/or sell copies of the Software, and to |