gitextract_wdz4x0ao/ ├── .github/ │ └── workflows/ │ └── main.yml ├── .gitignore ├── .gitlab-ci.yml ├── README.md ├── draggable_borderless/ │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── go/ │ │ ├── .gitignore │ │ ├── cmd/ │ │ │ ├── main.go │ │ │ └── options.go │ │ ├── go.mod │ │ ├── go.sum │ │ └── hover.yaml │ ├── lib/ │ │ └── main_desktop.dart │ └── pubspec.yaml ├── keyboard_event/ │ ├── .gitignore │ ├── README.md │ ├── fonts/ │ │ └── Roboto/ │ │ └── LICENSE.txt │ ├── go/ │ │ ├── .gitignore │ │ ├── cmd/ │ │ │ ├── main.go │ │ │ └── options.go │ │ ├── go.mod │ │ ├── go.sum │ │ └── hover.yaml │ ├── lib/ │ │ ├── app.dart │ │ ├── main.dart │ │ └── main_desktop.dart │ └── pubspec.yaml ├── plugin_tutorial/ │ ├── .gitignore │ ├── README.md │ ├── go/ │ │ ├── .gitignore │ │ ├── cmd/ │ │ │ ├── main.go │ │ │ └── options.go │ │ ├── go.mod │ │ ├── go.sum │ │ └── hover.yaml │ ├── go-plugin-example/ │ │ ├── battery/ │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ └── main.go │ │ └── complex/ │ │ ├── go.mod │ │ ├── go.sum │ │ └── main.go │ ├── lib/ │ │ └── main_desktop.dart │ └── pubspec.yaml ├── pointer_demo/ │ ├── .gitignore │ ├── README.md │ ├── fonts/ │ │ └── Roboto/ │ │ └── LICENSE.txt │ ├── go/ │ │ ├── .gitignore │ │ ├── cmd/ │ │ │ ├── main.go │ │ │ └── options.go │ │ ├── go.mod │ │ ├── go.sum │ │ └── hover.yaml │ ├── lib/ │ │ ├── app.dart │ │ ├── main.dart │ │ └── main_desktop.dart │ └── pubspec.yaml ├── renovate.json ├── stocks/ │ ├── .gitignore │ ├── README.md │ ├── fonts/ │ │ └── Roboto/ │ │ └── LICENSE.txt │ ├── go/ │ │ ├── .gitignore │ │ ├── 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.yaml ├── text_demo/ │ ├── .gitignore │ ├── fonts/ │ │ └── Roboto/ │ │ └── LICENSE.txt │ ├── go/ │ │ ├── .gitignore │ │ ├── cmd/ │ │ │ ├── main.go │ │ │ └── options.go │ │ ├── go.mod │ │ ├── go.sum │ │ └── hover.yaml │ ├── lib/ │ │ ├── app.dart │ │ ├── main.dart │ │ └── main_desktop.dart │ └── pubspec.yaml ├── texture_tutorial/ │ ├── .gitignore │ ├── README.md │ ├── go/ │ │ ├── .gitignore │ │ ├── cmd/ │ │ │ ├── main.go │ │ │ └── options.go │ │ ├── go.mod │ │ ├── go.sum │ │ └── hover.yaml │ ├── go-texture-example/ │ │ ├── gif/ │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ └── main.go │ │ └── image/ │ │ ├── go.mod │ │ ├── go.sum │ │ └── main.go │ ├── lib/ │ │ └── main_desktop.dart │ └── pubspec.yaml └── xbox_controller/ ├── .gitignore ├── README.md ├── fonts/ │ └── Roboto/ │ └── LICENSE.txt ├── go/ │ ├── .gitignore │ ├── cmd/ │ │ ├── import-path_provider-plugin.go │ │ ├── main.go │ │ └── options.go │ ├── go.mod │ ├── go.sum │ └── hover.yaml ├── go-plugin-example/ │ └── controller/ │ ├── go.mod │ ├── go.sum │ └── main.go ├── lib/ │ ├── game.dart │ ├── main.dart │ └── main_desktop.dart └── pubspec.yaml