Skip to content

Instantly share code, notes, and snippets.

Launching lib/main.dart on iPhone in debug mode...
Signing iOS app for device deployment using developer identity: "<removed>"
Running Xcode clean...
Starting Xcode build...
Xcode build done
Installing and launching...
Syncing files to device iPhone...
══╡ EXCEPTION CAUGHT BY GESTURE ╞═══════════════════════════════════════════════════════════════════
The following assertion was thrown while handling a gesture:
'package:flutter/src/material/ink_well.dart': Failed assertion: line 41: 'controller != null': is
@nuxibyte
nuxibyte / main.dart
Created April 1, 2018 16:16
textfieldtab
import 'package:flutter/material.dart';
import 'package:flutter/cupertino.dart';
void main() => runApp(new MaterialApp(home: new MyHomePage()));
class MyHomePage extends StatefulWidget {
MyHomePage({Key key}) : super(key: key);
@override
_MyHomePageState createState() => new _MyHomePageState();
@nuxibyte
nuxibyte / main.dart
Created April 1, 2018 16:15
textfield
import 'package:flutter/material.dart';
void main() => runApp(new MaterialApp(home: new MyHomePage()));
class MyHomePage extends StatefulWidget {
MyHomePage({Key key}) : super(key: key);
@override
_MyHomePageState createState() => new _MyHomePageState();
}
@nuxibyte
nuxibyte / Dockerfile
Last active January 21, 2018 21:50
How to set up an indy-node cluster using docker for the walkthrough.
FROM ubuntu:16.04
ARG DEBIAN_FRONTEND=noninteractive
####################
## Python
####################
# Config apt
# Update apt