start new:
tmux
start new with session name:
tmux new -s myname
/// http://dartpad.dev/981a8d2145a9878dae2b52aebd9fae88 | |
import 'package:flutter/material.dart'; | |
import 'package:flutter/services.dart'; | |
void main() => runApp(App()); | |
class App extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) => const MaterialApp( |
import 'package:flutter/material.dart'; | |
import 'dart:math' as math; | |
import 'dart:async'; | |
void main() => runApp(new MyApp()); | |
class MyApp extends StatelessWidget { | |
// This widget is the root of your application. | |
@override | |
Widget build(BuildContext context) { |
# https://dart.dev/guides/language/analysis-options | |
include: package:pedantic/analysis_options.yaml | |
#include: package:effective_dart/analysis_options.yaml | |
analyzer: | |
exclude: | |
- 'example/**' | |
- 'build/**' | |
- '**.g.dart' |
// | |
// Copyright (c) 2012-2015 Cédric Luthi / @0xced. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> | |
#if TARGET_OS_SIMULATOR | |
static const char *fakeCarrier; | |
static const char *fakeTime; |