├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitlab-ci.yml ├── README.md ├── draggable_borderless ├── .gitignore ├── .metadata ├── README.md ├── app_bar_drag.gif ├── go │ ├── .gitignore │ ├── assets │ │ └── icon.png │ ├── cmd │ │ ├── main.go │ │ └── options.go │ ├── go.mod │ ├── go.sum │ └── hover.yaml ├── lib │ └── main_desktop.dart ├── pubspec.lock └── pubspec.yaml ├── keyboard_event ├── .gitignore ├── README.md ├── fonts │ └── Roboto │ │ ├── LICENSE.txt │ │ ├── Roboto-Black.ttf │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-Regular.ttf │ │ └── Roboto-Thin.ttf ├── go │ ├── .gitignore │ ├── assets │ │ └── icon.png │ ├── cmd │ │ ├── main.go │ │ └── options.go │ ├── go.mod │ ├── go.sum │ └── hover.yaml ├── keyboard_event.gif ├── lib │ ├── app.dart │ ├── main.dart │ └── main_desktop.dart ├── pubspec.lock └── pubspec.yaml ├── plugin_tutorial ├── .gitignore ├── README.md ├── go-plugin-example │ ├── battery │ │ ├── go.mod │ │ ├── go.sum │ │ └── main.go │ └── complex │ │ ├── go.mod │ │ ├── go.sum │ │ └── main.go ├── go │ ├── .gitignore │ ├── assets │ │ └── icon.png │ ├── cmd │ │ ├── main.go │ │ └── options.go │ ├── go.mod │ ├── go.sum │ └── hover.yaml ├── lib │ └── main_desktop.dart ├── pubspec.lock └── pubspec.yaml ├── pointer_demo ├── .gitignore ├── README.md ├── fonts │ └── Roboto │ │ ├── LICENSE.txt │ │ ├── Roboto-Black.ttf │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-Regular.ttf │ │ └── Roboto-Thin.ttf ├── go │ ├── .gitignore │ ├── assets │ │ └── icon.png │ ├── cmd │ │ ├── main.go │ │ └── options.go │ ├── go.mod │ ├── go.sum │ └── hover.yaml ├── hover.gif ├── lib │ ├── app.dart │ ├── main.dart │ └── main_desktop.dart ├── pubspec.lock └── pubspec.yaml ├── renovate.json ├── stocks ├── .gitignore ├── README.md ├── fonts │ └── Roboto │ │ ├── LICENSE.txt │ │ ├── Roboto-Black.ttf │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-Regular.ttf │ │ └── Roboto-Thin.ttf ├── go │ ├── .gitignore │ ├── assets │ │ └── icon.png │ ├── cmd │ │ ├── main.go │ │ └── options.go │ ├── go.mod │ ├── go.sum │ ├── hover.yaml │ └── packaging │ │ ├── darwin-bundle │ │ └── {{.applicationName}} {{.version}}.app │ │ │ └── Contents │ │ │ └── Info.plist.tmpl │ │ ├── darwin-pkg │ │ └── flat │ │ │ ├── Distribution.tmpl │ │ │ └── base.pkg │ │ │ └── PackageInfo.tmpl │ │ ├── linux-appimage │ │ ├── AppRun.tmpl │ │ └── {{.packageName}}.desktop.tmpl │ │ ├── linux-deb │ │ ├── DEBIAN │ │ │ └── control.tmpl │ │ └── usr │ │ │ ├── bin │ │ │ └── {{.executableName}}.tmpl │ │ │ └── share │ │ │ └── applications │ │ │ └── {{.executableName}}.desktop.tmpl │ │ ├── linux-pkg │ │ ├── PKGBUILD.tmpl │ │ └── src │ │ │ └── usr │ │ │ ├── bin │ │ │ └── {{.executableName}}.tmpl │ │ │ └── share │ │ │ └── applications │ │ │ └── {{.executableName}}.desktop.tmpl │ │ ├── linux-rpm │ │ ├── BUILDROOT │ │ │ └── {{.packageName}}-{{.version}}-{{.release}}.x86_64 │ │ │ │ └── usr │ │ │ │ ├── bin │ │ │ │ └── {{.executableName}}.tmpl │ │ │ │ └── share │ │ │ │ └── applications │ │ │ │ └── {{.executableName}}.desktop.tmpl │ │ └── SPECS │ │ │ └── {{.packageName}}.spec.tmpl │ │ ├── linux-snap │ │ └── snap │ │ │ ├── local │ │ │ └── {{.executableName}}.desktop.tmpl │ │ │ └── snapcraft.yaml.tmpl │ │ └── windows-msi │ │ ├── upgrade-code.txt │ │ └── {{.packageName}}.wxs.tmpl ├── lib │ ├── i18n │ │ ├── .dartignore │ │ ├── regenerate.md │ │ ├── stock_messages_all.dart │ │ ├── stock_messages_en.dart │ │ ├── stock_messages_es.dart │ │ ├── stocks_en.arb │ │ └── stocks_es.arb │ ├── main.dart │ ├── main_desktop.dart │ ├── stock.dart │ ├── stock_arrow.dart │ ├── stock_data.dart │ ├── stock_home.dart │ ├── stock_list.dart │ ├── stock_row.dart │ ├── stock_settings.dart │ ├── stock_strings.dart │ ├── stock_symbol_viewer.dart │ └── stock_types.dart ├── pubspec.lock └── pubspec.yaml ├── text_demo ├── .gitignore ├── fonts │ └── Roboto │ │ ├── LICENSE.txt │ │ ├── Roboto-Black.ttf │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-Regular.ttf │ │ └── Roboto-Thin.ttf ├── go │ ├── .gitignore │ ├── assets │ │ └── icon.png │ ├── cmd │ │ ├── main.go │ │ └── options.go │ ├── go.mod │ ├── go.sum │ └── hover.yaml ├── lib │ ├── app.dart │ ├── main.dart │ └── main_desktop.dart ├── pubspec.lock └── pubspec.yaml ├── texture_tutorial ├── .gitignore ├── README.md ├── SampleVideo.gif ├── go-texture-example │ ├── gif │ │ ├── go.mod │ │ ├── go.sum │ │ └── main.go │ └── image │ │ ├── go.mod │ │ ├── go.sum │ │ └── main.go ├── go │ ├── .gitignore │ ├── assets │ │ └── icon.png │ ├── cmd │ │ ├── main.go │ │ └── options.go │ ├── go.mod │ ├── go.sum │ └── hover.yaml ├── lib │ └── main_desktop.dart ├── pubspec.lock ├── pubspec.yaml └── test.png └── xbox_controller ├── .gitignore ├── README.md ├── assets └── xbox-controller.svg ├── fonts └── Roboto │ ├── LICENSE.txt │ ├── Roboto-Black.ttf │ ├── Roboto-Bold.ttf │ ├── Roboto-Light.ttf │ ├── Roboto-Medium.ttf │ ├── Roboto-Regular.ttf │ └── Roboto-Thin.ttf ├── go-plugin-example └── controller │ ├── go.mod │ ├── go.sum │ └── main.go ├── go ├── .gitignore ├── assets │ └── icon.png ├── cmd │ ├── import-path_provider-plugin.go │ ├── main.go │ └── options.go ├── go.mod ├── go.sum └── hover.yaml ├── lib ├── game.dart ├── main.dart └── main_desktop.dart ├── pubspec.lock ├── pubspec.yaml └── xbox_controller.gif /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | .flutter-plugins-dependencies 4 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/README.md -------------------------------------------------------------------------------- /draggable_borderless/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/draggable_borderless/.gitignore -------------------------------------------------------------------------------- /draggable_borderless/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/draggable_borderless/.metadata -------------------------------------------------------------------------------- /draggable_borderless/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/draggable_borderless/README.md -------------------------------------------------------------------------------- /draggable_borderless/app_bar_drag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/draggable_borderless/app_bar_drag.gif -------------------------------------------------------------------------------- /draggable_borderless/go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/draggable_borderless/go/.gitignore -------------------------------------------------------------------------------- /draggable_borderless/go/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/draggable_borderless/go/assets/icon.png -------------------------------------------------------------------------------- /draggable_borderless/go/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/draggable_borderless/go/cmd/main.go -------------------------------------------------------------------------------- /draggable_borderless/go/cmd/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/draggable_borderless/go/cmd/options.go -------------------------------------------------------------------------------- /draggable_borderless/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/draggable_borderless/go/go.mod -------------------------------------------------------------------------------- /draggable_borderless/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/draggable_borderless/go/go.sum -------------------------------------------------------------------------------- /draggable_borderless/go/hover.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/draggable_borderless/go/hover.yaml -------------------------------------------------------------------------------- /draggable_borderless/lib/main_desktop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/draggable_borderless/lib/main_desktop.dart -------------------------------------------------------------------------------- /draggable_borderless/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/draggable_borderless/pubspec.lock -------------------------------------------------------------------------------- /draggable_borderless/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/draggable_borderless/pubspec.yaml -------------------------------------------------------------------------------- /keyboard_event/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/keyboard_event/.gitignore -------------------------------------------------------------------------------- /keyboard_event/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/keyboard_event/README.md -------------------------------------------------------------------------------- /keyboard_event/fonts/Roboto/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/keyboard_event/fonts/Roboto/LICENSE.txt -------------------------------------------------------------------------------- /keyboard_event/fonts/Roboto/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/keyboard_event/fonts/Roboto/Roboto-Black.ttf -------------------------------------------------------------------------------- /keyboard_event/fonts/Roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/keyboard_event/fonts/Roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /keyboard_event/fonts/Roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/keyboard_event/fonts/Roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /keyboard_event/fonts/Roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/keyboard_event/fonts/Roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /keyboard_event/fonts/Roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/keyboard_event/fonts/Roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /keyboard_event/fonts/Roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/keyboard_event/fonts/Roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /keyboard_event/go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/keyboard_event/go/.gitignore -------------------------------------------------------------------------------- /keyboard_event/go/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/keyboard_event/go/assets/icon.png -------------------------------------------------------------------------------- /keyboard_event/go/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/keyboard_event/go/cmd/main.go -------------------------------------------------------------------------------- /keyboard_event/go/cmd/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/keyboard_event/go/cmd/options.go -------------------------------------------------------------------------------- /keyboard_event/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/keyboard_event/go/go.mod -------------------------------------------------------------------------------- /keyboard_event/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/keyboard_event/go/go.sum -------------------------------------------------------------------------------- /keyboard_event/go/hover.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/keyboard_event/go/hover.yaml -------------------------------------------------------------------------------- /keyboard_event/keyboard_event.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/keyboard_event/keyboard_event.gif -------------------------------------------------------------------------------- /keyboard_event/lib/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/keyboard_event/lib/app.dart -------------------------------------------------------------------------------- /keyboard_event/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/keyboard_event/lib/main.dart -------------------------------------------------------------------------------- /keyboard_event/lib/main_desktop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/keyboard_event/lib/main_desktop.dart -------------------------------------------------------------------------------- /keyboard_event/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/keyboard_event/pubspec.lock -------------------------------------------------------------------------------- /keyboard_event/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/keyboard_event/pubspec.yaml -------------------------------------------------------------------------------- /plugin_tutorial/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/plugin_tutorial/.gitignore -------------------------------------------------------------------------------- /plugin_tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/plugin_tutorial/README.md -------------------------------------------------------------------------------- /plugin_tutorial/go-plugin-example/battery/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/plugin_tutorial/go-plugin-example/battery/go.mod -------------------------------------------------------------------------------- /plugin_tutorial/go-plugin-example/battery/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/plugin_tutorial/go-plugin-example/battery/go.sum -------------------------------------------------------------------------------- /plugin_tutorial/go-plugin-example/battery/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/plugin_tutorial/go-plugin-example/battery/main.go -------------------------------------------------------------------------------- /plugin_tutorial/go-plugin-example/complex/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/plugin_tutorial/go-plugin-example/complex/go.mod -------------------------------------------------------------------------------- /plugin_tutorial/go-plugin-example/complex/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/plugin_tutorial/go-plugin-example/complex/go.sum -------------------------------------------------------------------------------- /plugin_tutorial/go-plugin-example/complex/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/plugin_tutorial/go-plugin-example/complex/main.go -------------------------------------------------------------------------------- /plugin_tutorial/go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/plugin_tutorial/go/.gitignore -------------------------------------------------------------------------------- /plugin_tutorial/go/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/plugin_tutorial/go/assets/icon.png -------------------------------------------------------------------------------- /plugin_tutorial/go/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/plugin_tutorial/go/cmd/main.go -------------------------------------------------------------------------------- /plugin_tutorial/go/cmd/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/plugin_tutorial/go/cmd/options.go -------------------------------------------------------------------------------- /plugin_tutorial/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/plugin_tutorial/go/go.mod -------------------------------------------------------------------------------- /plugin_tutorial/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/plugin_tutorial/go/go.sum -------------------------------------------------------------------------------- /plugin_tutorial/go/hover.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/plugin_tutorial/go/hover.yaml -------------------------------------------------------------------------------- /plugin_tutorial/lib/main_desktop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/plugin_tutorial/lib/main_desktop.dart -------------------------------------------------------------------------------- /plugin_tutorial/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/plugin_tutorial/pubspec.lock -------------------------------------------------------------------------------- /plugin_tutorial/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/plugin_tutorial/pubspec.yaml -------------------------------------------------------------------------------- /pointer_demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/pointer_demo/.gitignore -------------------------------------------------------------------------------- /pointer_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/pointer_demo/README.md -------------------------------------------------------------------------------- /pointer_demo/fonts/Roboto/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/pointer_demo/fonts/Roboto/LICENSE.txt -------------------------------------------------------------------------------- /pointer_demo/fonts/Roboto/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/pointer_demo/fonts/Roboto/Roboto-Black.ttf -------------------------------------------------------------------------------- /pointer_demo/fonts/Roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/pointer_demo/fonts/Roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /pointer_demo/fonts/Roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/pointer_demo/fonts/Roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /pointer_demo/fonts/Roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/pointer_demo/fonts/Roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /pointer_demo/fonts/Roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/pointer_demo/fonts/Roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /pointer_demo/fonts/Roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/pointer_demo/fonts/Roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /pointer_demo/go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/pointer_demo/go/.gitignore -------------------------------------------------------------------------------- /pointer_demo/go/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/pointer_demo/go/assets/icon.png -------------------------------------------------------------------------------- /pointer_demo/go/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/pointer_demo/go/cmd/main.go -------------------------------------------------------------------------------- /pointer_demo/go/cmd/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/pointer_demo/go/cmd/options.go -------------------------------------------------------------------------------- /pointer_demo/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/pointer_demo/go/go.mod -------------------------------------------------------------------------------- /pointer_demo/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/pointer_demo/go/go.sum -------------------------------------------------------------------------------- /pointer_demo/go/hover.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/pointer_demo/go/hover.yaml -------------------------------------------------------------------------------- /pointer_demo/hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/pointer_demo/hover.gif -------------------------------------------------------------------------------- /pointer_demo/lib/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/pointer_demo/lib/app.dart -------------------------------------------------------------------------------- /pointer_demo/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/pointer_demo/lib/main.dart -------------------------------------------------------------------------------- /pointer_demo/lib/main_desktop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/pointer_demo/lib/main_desktop.dart -------------------------------------------------------------------------------- /pointer_demo/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/pointer_demo/pubspec.lock -------------------------------------------------------------------------------- /pointer_demo/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/pointer_demo/pubspec.yaml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/renovate.json -------------------------------------------------------------------------------- /stocks/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/.gitignore -------------------------------------------------------------------------------- /stocks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/README.md -------------------------------------------------------------------------------- /stocks/fonts/Roboto/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/fonts/Roboto/LICENSE.txt -------------------------------------------------------------------------------- /stocks/fonts/Roboto/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/fonts/Roboto/Roboto-Black.ttf -------------------------------------------------------------------------------- /stocks/fonts/Roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/fonts/Roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /stocks/fonts/Roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/fonts/Roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /stocks/fonts/Roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/fonts/Roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /stocks/fonts/Roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/fonts/Roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /stocks/fonts/Roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/fonts/Roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /stocks/go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/go/.gitignore -------------------------------------------------------------------------------- /stocks/go/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/go/assets/icon.png -------------------------------------------------------------------------------- /stocks/go/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/go/cmd/main.go -------------------------------------------------------------------------------- /stocks/go/cmd/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/go/cmd/options.go -------------------------------------------------------------------------------- /stocks/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/go/go.mod -------------------------------------------------------------------------------- /stocks/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/go/go.sum -------------------------------------------------------------------------------- /stocks/go/hover.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/go/hover.yaml -------------------------------------------------------------------------------- /stocks/go/packaging/darwin-bundle/{{.applicationName}} {{.version}}.app/Contents/Info.plist.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/go/packaging/darwin-bundle/{{.applicationName}} {{.version}}.app/Contents/Info.plist.tmpl -------------------------------------------------------------------------------- /stocks/go/packaging/darwin-pkg/flat/Distribution.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/go/packaging/darwin-pkg/flat/Distribution.tmpl -------------------------------------------------------------------------------- /stocks/go/packaging/darwin-pkg/flat/base.pkg/PackageInfo.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/go/packaging/darwin-pkg/flat/base.pkg/PackageInfo.tmpl -------------------------------------------------------------------------------- /stocks/go/packaging/linux-appimage/AppRun.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/go/packaging/linux-appimage/AppRun.tmpl -------------------------------------------------------------------------------- /stocks/go/packaging/linux-appimage/{{.packageName}}.desktop.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/go/packaging/linux-appimage/{{.packageName}}.desktop.tmpl -------------------------------------------------------------------------------- /stocks/go/packaging/linux-deb/DEBIAN/control.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/go/packaging/linux-deb/DEBIAN/control.tmpl -------------------------------------------------------------------------------- /stocks/go/packaging/linux-deb/usr/bin/{{.executableName}}.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/go/packaging/linux-deb/usr/bin/{{.executableName}}.tmpl -------------------------------------------------------------------------------- /stocks/go/packaging/linux-deb/usr/share/applications/{{.executableName}}.desktop.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/go/packaging/linux-deb/usr/share/applications/{{.executableName}}.desktop.tmpl -------------------------------------------------------------------------------- /stocks/go/packaging/linux-pkg/PKGBUILD.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/go/packaging/linux-pkg/PKGBUILD.tmpl -------------------------------------------------------------------------------- /stocks/go/packaging/linux-pkg/src/usr/bin/{{.executableName}}.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/go/packaging/linux-pkg/src/usr/bin/{{.executableName}}.tmpl -------------------------------------------------------------------------------- /stocks/go/packaging/linux-pkg/src/usr/share/applications/{{.executableName}}.desktop.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/go/packaging/linux-pkg/src/usr/share/applications/{{.executableName}}.desktop.tmpl -------------------------------------------------------------------------------- /stocks/go/packaging/linux-rpm/BUILDROOT/{{.packageName}}-{{.version}}-{{.release}}.x86_64/usr/bin/{{.executableName}}.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/go/packaging/linux-rpm/BUILDROOT/{{.packageName}}-{{.version}}-{{.release}}.x86_64/usr/bin/{{.executableName}}.tmpl -------------------------------------------------------------------------------- /stocks/go/packaging/linux-rpm/BUILDROOT/{{.packageName}}-{{.version}}-{{.release}}.x86_64/usr/share/applications/{{.executableName}}.desktop.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/go/packaging/linux-rpm/BUILDROOT/{{.packageName}}-{{.version}}-{{.release}}.x86_64/usr/share/applications/{{.executableName}}.desktop.tmpl -------------------------------------------------------------------------------- /stocks/go/packaging/linux-rpm/SPECS/{{.packageName}}.spec.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/go/packaging/linux-rpm/SPECS/{{.packageName}}.spec.tmpl -------------------------------------------------------------------------------- /stocks/go/packaging/linux-snap/snap/local/{{.executableName}}.desktop.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/go/packaging/linux-snap/snap/local/{{.executableName}}.desktop.tmpl -------------------------------------------------------------------------------- /stocks/go/packaging/linux-snap/snap/snapcraft.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/go/packaging/linux-snap/snap/snapcraft.yaml.tmpl -------------------------------------------------------------------------------- /stocks/go/packaging/windows-msi/upgrade-code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/go/packaging/windows-msi/upgrade-code.txt -------------------------------------------------------------------------------- /stocks/go/packaging/windows-msi/{{.packageName}}.wxs.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/go/packaging/windows-msi/{{.packageName}}.wxs.tmpl -------------------------------------------------------------------------------- /stocks/lib/i18n/.dartignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stocks/lib/i18n/regenerate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/lib/i18n/regenerate.md -------------------------------------------------------------------------------- /stocks/lib/i18n/stock_messages_all.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/lib/i18n/stock_messages_all.dart -------------------------------------------------------------------------------- /stocks/lib/i18n/stock_messages_en.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/lib/i18n/stock_messages_en.dart -------------------------------------------------------------------------------- /stocks/lib/i18n/stock_messages_es.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/lib/i18n/stock_messages_es.dart -------------------------------------------------------------------------------- /stocks/lib/i18n/stocks_en.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/lib/i18n/stocks_en.arb -------------------------------------------------------------------------------- /stocks/lib/i18n/stocks_es.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/lib/i18n/stocks_es.arb -------------------------------------------------------------------------------- /stocks/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/lib/main.dart -------------------------------------------------------------------------------- /stocks/lib/main_desktop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/lib/main_desktop.dart -------------------------------------------------------------------------------- /stocks/lib/stock.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/lib/stock.dart -------------------------------------------------------------------------------- /stocks/lib/stock_arrow.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/lib/stock_arrow.dart -------------------------------------------------------------------------------- /stocks/lib/stock_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/lib/stock_data.dart -------------------------------------------------------------------------------- /stocks/lib/stock_home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/lib/stock_home.dart -------------------------------------------------------------------------------- /stocks/lib/stock_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/lib/stock_list.dart -------------------------------------------------------------------------------- /stocks/lib/stock_row.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/lib/stock_row.dart -------------------------------------------------------------------------------- /stocks/lib/stock_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/lib/stock_settings.dart -------------------------------------------------------------------------------- /stocks/lib/stock_strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/lib/stock_strings.dart -------------------------------------------------------------------------------- /stocks/lib/stock_symbol_viewer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/lib/stock_symbol_viewer.dart -------------------------------------------------------------------------------- /stocks/lib/stock_types.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/lib/stock_types.dart -------------------------------------------------------------------------------- /stocks/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/pubspec.lock -------------------------------------------------------------------------------- /stocks/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/stocks/pubspec.yaml -------------------------------------------------------------------------------- /text_demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/text_demo/.gitignore -------------------------------------------------------------------------------- /text_demo/fonts/Roboto/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/text_demo/fonts/Roboto/LICENSE.txt -------------------------------------------------------------------------------- /text_demo/fonts/Roboto/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/text_demo/fonts/Roboto/Roboto-Black.ttf -------------------------------------------------------------------------------- /text_demo/fonts/Roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/text_demo/fonts/Roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /text_demo/fonts/Roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/text_demo/fonts/Roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /text_demo/fonts/Roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/text_demo/fonts/Roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /text_demo/fonts/Roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/text_demo/fonts/Roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /text_demo/fonts/Roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/text_demo/fonts/Roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /text_demo/go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/text_demo/go/.gitignore -------------------------------------------------------------------------------- /text_demo/go/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/text_demo/go/assets/icon.png -------------------------------------------------------------------------------- /text_demo/go/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/text_demo/go/cmd/main.go -------------------------------------------------------------------------------- /text_demo/go/cmd/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/text_demo/go/cmd/options.go -------------------------------------------------------------------------------- /text_demo/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/text_demo/go/go.mod -------------------------------------------------------------------------------- /text_demo/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/text_demo/go/go.sum -------------------------------------------------------------------------------- /text_demo/go/hover.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/text_demo/go/hover.yaml -------------------------------------------------------------------------------- /text_demo/lib/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/text_demo/lib/app.dart -------------------------------------------------------------------------------- /text_demo/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/text_demo/lib/main.dart -------------------------------------------------------------------------------- /text_demo/lib/main_desktop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/text_demo/lib/main_desktop.dart -------------------------------------------------------------------------------- /text_demo/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/text_demo/pubspec.lock -------------------------------------------------------------------------------- /text_demo/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/text_demo/pubspec.yaml -------------------------------------------------------------------------------- /texture_tutorial/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/texture_tutorial/.gitignore -------------------------------------------------------------------------------- /texture_tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/texture_tutorial/README.md -------------------------------------------------------------------------------- /texture_tutorial/SampleVideo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/texture_tutorial/SampleVideo.gif -------------------------------------------------------------------------------- /texture_tutorial/go-texture-example/gif/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/texture_tutorial/go-texture-example/gif/go.mod -------------------------------------------------------------------------------- /texture_tutorial/go-texture-example/gif/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/texture_tutorial/go-texture-example/gif/go.sum -------------------------------------------------------------------------------- /texture_tutorial/go-texture-example/gif/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/texture_tutorial/go-texture-example/gif/main.go -------------------------------------------------------------------------------- /texture_tutorial/go-texture-example/image/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/texture_tutorial/go-texture-example/image/go.mod -------------------------------------------------------------------------------- /texture_tutorial/go-texture-example/image/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/texture_tutorial/go-texture-example/image/go.sum -------------------------------------------------------------------------------- /texture_tutorial/go-texture-example/image/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/texture_tutorial/go-texture-example/image/main.go -------------------------------------------------------------------------------- /texture_tutorial/go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/texture_tutorial/go/.gitignore -------------------------------------------------------------------------------- /texture_tutorial/go/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/texture_tutorial/go/assets/icon.png -------------------------------------------------------------------------------- /texture_tutorial/go/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/texture_tutorial/go/cmd/main.go -------------------------------------------------------------------------------- /texture_tutorial/go/cmd/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/texture_tutorial/go/cmd/options.go -------------------------------------------------------------------------------- /texture_tutorial/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/texture_tutorial/go/go.mod -------------------------------------------------------------------------------- /texture_tutorial/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/texture_tutorial/go/go.sum -------------------------------------------------------------------------------- /texture_tutorial/go/hover.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/texture_tutorial/go/hover.yaml -------------------------------------------------------------------------------- /texture_tutorial/lib/main_desktop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/texture_tutorial/lib/main_desktop.dart -------------------------------------------------------------------------------- /texture_tutorial/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/texture_tutorial/pubspec.lock -------------------------------------------------------------------------------- /texture_tutorial/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/texture_tutorial/pubspec.yaml -------------------------------------------------------------------------------- /texture_tutorial/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/texture_tutorial/test.png -------------------------------------------------------------------------------- /xbox_controller/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/xbox_controller/.gitignore -------------------------------------------------------------------------------- /xbox_controller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/xbox_controller/README.md -------------------------------------------------------------------------------- /xbox_controller/assets/xbox-controller.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/xbox_controller/assets/xbox-controller.svg -------------------------------------------------------------------------------- /xbox_controller/fonts/Roboto/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/xbox_controller/fonts/Roboto/LICENSE.txt -------------------------------------------------------------------------------- /xbox_controller/fonts/Roboto/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/xbox_controller/fonts/Roboto/Roboto-Black.ttf -------------------------------------------------------------------------------- /xbox_controller/fonts/Roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/xbox_controller/fonts/Roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /xbox_controller/fonts/Roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/xbox_controller/fonts/Roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /xbox_controller/fonts/Roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/xbox_controller/fonts/Roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /xbox_controller/fonts/Roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/xbox_controller/fonts/Roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /xbox_controller/fonts/Roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/xbox_controller/fonts/Roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /xbox_controller/go-plugin-example/controller/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/xbox_controller/go-plugin-example/controller/go.mod -------------------------------------------------------------------------------- /xbox_controller/go-plugin-example/controller/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/xbox_controller/go-plugin-example/controller/go.sum -------------------------------------------------------------------------------- /xbox_controller/go-plugin-example/controller/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/xbox_controller/go-plugin-example/controller/main.go -------------------------------------------------------------------------------- /xbox_controller/go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/xbox_controller/go/.gitignore -------------------------------------------------------------------------------- /xbox_controller/go/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/xbox_controller/go/assets/icon.png -------------------------------------------------------------------------------- /xbox_controller/go/cmd/import-path_provider-plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/xbox_controller/go/cmd/import-path_provider-plugin.go -------------------------------------------------------------------------------- /xbox_controller/go/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/xbox_controller/go/cmd/main.go -------------------------------------------------------------------------------- /xbox_controller/go/cmd/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/xbox_controller/go/cmd/options.go -------------------------------------------------------------------------------- /xbox_controller/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/xbox_controller/go/go.mod -------------------------------------------------------------------------------- /xbox_controller/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/xbox_controller/go/go.sum -------------------------------------------------------------------------------- /xbox_controller/go/hover.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/xbox_controller/go/hover.yaml -------------------------------------------------------------------------------- /xbox_controller/lib/game.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/xbox_controller/lib/game.dart -------------------------------------------------------------------------------- /xbox_controller/lib/main.dart: -------------------------------------------------------------------------------- 1 | void main() async { 2 | print("Desktop only application"); 3 | } 4 | -------------------------------------------------------------------------------- /xbox_controller/lib/main_desktop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/xbox_controller/lib/main_desktop.dart -------------------------------------------------------------------------------- /xbox_controller/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/xbox_controller/pubspec.lock -------------------------------------------------------------------------------- /xbox_controller/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/xbox_controller/pubspec.yaml -------------------------------------------------------------------------------- /xbox_controller/xbox_controller.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-flutter-desktop/examples/HEAD/xbox_controller/xbox_controller.gif --------------------------------------------------------------------------------