├── .gitignore ├── README.md ├── deploy.sh ├── gen.sh ├── lib ├── main.dart └── qt │ ├── bluetooth.dart │ ├── charts.dart │ ├── core.dart │ ├── datavisualization.dart │ ├── dbus.dart │ ├── designer.dart │ ├── gamepad.dart │ ├── gui.dart │ ├── help.dart │ ├── internal.dart │ ├── interop.dart │ ├── location.dart │ ├── macextras.dart │ ├── multimedia.dart │ ├── network.dart │ ├── nfc.dart │ ├── positioning.dart │ ├── printsupport.dart │ ├── purchasing.dart │ ├── qml.dart │ ├── quick.dart │ ├── quickcontrols2.dart │ ├── remoteobjects.dart │ ├── sailfish.dart │ ├── script.dart │ ├── scripttools.dart │ ├── scxml.dart │ ├── sensors.dart │ ├── serialbus.dart │ ├── serialport.dart │ ├── speech.dart │ ├── sql.dart │ ├── svg.dart │ ├── testlib.dart │ ├── uitools.dart │ ├── virtualkeyboard.dart │ ├── webchannel.dart │ ├── webengine.dart │ ├── websockets.dart │ ├── webview.dart │ ├── widgets.dart │ ├── xml.dart │ └── xmlpatterns.dart ├── macos └── info ├── main.go ├── make.sh ├── pubspec.yaml ├── push.sh └── qml └── main.qml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/README.md -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/deploy.sh -------------------------------------------------------------------------------- /gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/gen.sh -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/qt/bluetooth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/bluetooth.dart -------------------------------------------------------------------------------- /lib/qt/charts.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/charts.dart -------------------------------------------------------------------------------- /lib/qt/core.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/core.dart -------------------------------------------------------------------------------- /lib/qt/datavisualization.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/datavisualization.dart -------------------------------------------------------------------------------- /lib/qt/dbus.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/dbus.dart -------------------------------------------------------------------------------- /lib/qt/designer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/designer.dart -------------------------------------------------------------------------------- /lib/qt/gamepad.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/gamepad.dart -------------------------------------------------------------------------------- /lib/qt/gui.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/gui.dart -------------------------------------------------------------------------------- /lib/qt/help.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/help.dart -------------------------------------------------------------------------------- /lib/qt/internal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/internal.dart -------------------------------------------------------------------------------- /lib/qt/interop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/interop.dart -------------------------------------------------------------------------------- /lib/qt/location.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/location.dart -------------------------------------------------------------------------------- /lib/qt/macextras.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/macextras.dart -------------------------------------------------------------------------------- /lib/qt/multimedia.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/multimedia.dart -------------------------------------------------------------------------------- /lib/qt/network.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/network.dart -------------------------------------------------------------------------------- /lib/qt/nfc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/nfc.dart -------------------------------------------------------------------------------- /lib/qt/positioning.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/positioning.dart -------------------------------------------------------------------------------- /lib/qt/printsupport.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/printsupport.dart -------------------------------------------------------------------------------- /lib/qt/purchasing.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/purchasing.dart -------------------------------------------------------------------------------- /lib/qt/qml.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/qml.dart -------------------------------------------------------------------------------- /lib/qt/quick.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/quick.dart -------------------------------------------------------------------------------- /lib/qt/quickcontrols2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/quickcontrols2.dart -------------------------------------------------------------------------------- /lib/qt/remoteobjects.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/remoteobjects.dart -------------------------------------------------------------------------------- /lib/qt/sailfish.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/sailfish.dart -------------------------------------------------------------------------------- /lib/qt/script.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/script.dart -------------------------------------------------------------------------------- /lib/qt/scripttools.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/scripttools.dart -------------------------------------------------------------------------------- /lib/qt/scxml.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/scxml.dart -------------------------------------------------------------------------------- /lib/qt/sensors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/sensors.dart -------------------------------------------------------------------------------- /lib/qt/serialbus.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/serialbus.dart -------------------------------------------------------------------------------- /lib/qt/serialport.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/serialport.dart -------------------------------------------------------------------------------- /lib/qt/speech.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/speech.dart -------------------------------------------------------------------------------- /lib/qt/sql.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/sql.dart -------------------------------------------------------------------------------- /lib/qt/svg.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/svg.dart -------------------------------------------------------------------------------- /lib/qt/testlib.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/testlib.dart -------------------------------------------------------------------------------- /lib/qt/uitools.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/uitools.dart -------------------------------------------------------------------------------- /lib/qt/virtualkeyboard.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/virtualkeyboard.dart -------------------------------------------------------------------------------- /lib/qt/webchannel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/webchannel.dart -------------------------------------------------------------------------------- /lib/qt/webengine.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/webengine.dart -------------------------------------------------------------------------------- /lib/qt/websockets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/websockets.dart -------------------------------------------------------------------------------- /lib/qt/webview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/webview.dart -------------------------------------------------------------------------------- /lib/qt/widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/widgets.dart -------------------------------------------------------------------------------- /lib/qt/xml.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/xml.dart -------------------------------------------------------------------------------- /lib/qt/xmlpatterns.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/lib/qt/xmlpatterns.dart -------------------------------------------------------------------------------- /macos/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/macos/info -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/main.go -------------------------------------------------------------------------------- /make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/make.sh -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/push.sh -------------------------------------------------------------------------------- /qml/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therecipe/flutter/HEAD/qml/main.qml --------------------------------------------------------------------------------