start new:
tmux
start new with session name:
tmux new -s myname
| import 'dart:async'; | |
| import 'dart:io'; | |
| import 'package:path/path.dart'; | |
| import 'package:path_provider/path_provider.dart'; | |
| import 'package:sqflite/sqflite.dart'; | |
| import 'package:meta/meta.dart'; | |
| class ToDo { |
| # Configuration for Alacritty, the GPU enhanced terminal emulator | |
| # Any items in the `env` entry below will be added as | |
| # environment variables. Some entries may override variables | |
| # set by alacritty it self. | |
| env: | |
| # TERM env customization. | |
| # | |
| # If this property is not set, alacritty will set it to xterm-256color. | |
| # |
| class ColumnBuilder extends StatelessWidget { | |
| final IndexedWidgetBuilder itemBuilder; | |
| final MainAxisAlignment mainAxisAlignment; | |
| final MainAxisSize mainAxisSize; | |
| final CrossAxisAlignment crossAxisAlignment; | |
| final TextDirection textDirection; | |
| final VerticalDirection verticalDirection; | |
| final int itemCount; |
| return new Scaffold( | |
| appBar: new AppBar( | |
| title: new Text("Project Details"), | |
| backgroundColor: Colors.blue[800]), | |
| body: | |
| new CustomScrollView( | |
| slivers: <Widget>[ | |
| new SliverPadding(padding: const EdgeInsets.only(left: 10.0,right: 10.0, | |
| top: 10.0,bottom: 0.0), | |
| sliver: new SliverList(delegate: |