├── .gitattributes ├── LICENSE ├── README.md ├── cookiecutter.json └── {{cookiecutter.out_dir}} ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── {{ cookiecutter.kotlin_dir }} │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── images ├── favicon.png └── icon.png ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h └── RunnerTests │ └── RunnerTests.swift ├── lib └── main.dart ├── linux ├── .gitignore ├── CMakeLists.txt ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── main.cc ├── my_application.cc └── my_application.h ├── macos ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── Podfile ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── app_icon_1024.png │ │ │ ├── app_icon_128.png │ │ │ ├── app_icon_16.png │ │ │ ├── app_icon_256.png │ │ │ ├── app_icon_32.png │ │ │ ├── app_icon_512.png │ │ │ └── app_icon_64.png │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── Configs │ │ ├── AppInfo.xcconfig │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ └── Warnings.xcconfig │ ├── DebugProfile.entitlements │ ├── Info.plist │ ├── MainFlutterWindow.swift │ └── Release.entitlements └── RunnerTests │ └── RunnerTests.swift ├── pubspec.yaml ├── web ├── favicon.png ├── icons │ ├── Icon-192.png │ ├── Icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png ├── index.html ├── manifest.json ├── python-worker.js └── python.js └── windows ├── .gitignore ├── CMakeLists.txt ├── flutter ├── CMakeLists.txt ├── generated_plugin_registrant.cc ├── generated_plugin_registrant.h └── generated_plugins.cmake └── runner ├── CMakeLists.txt ├── Runner.rc ├── flutter_window.cpp ├── flutter_window.h ├── main.cpp ├── resource.h ├── resources └── app_icon.ico ├── runner.exe.manifest ├── utils.cpp ├── utils.h ├── win32_window.cpp └── win32_window.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/README.md -------------------------------------------------------------------------------- /cookiecutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/cookiecutter.json -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/.gitignore -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/.metadata -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/README.md -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/analysis_options.yaml -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/android/.gitignore -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/android/app/build.gradle -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/android/app/src/main/kotlin/{{ cookiecutter.kotlin_dir }}/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/android/app/src/main/kotlin/{{ cookiecutter.kotlin_dir }}/MainActivity.kt -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/android/build.gradle -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/android/gradle.properties -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/android/settings.gradle -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/images/favicon.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/images/icon.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/.gitignore -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Podfile -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/Runner/Info.plist -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/lib/main.dart -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/linux/CMakeLists.txt -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/linux/main.cc -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/linux/my_application.cc -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/linux/my_application.h -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/macos/.gitignore -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/macos/Podfile -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/macos/Runner/Info.plist -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/pubspec.yaml -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/web/favicon.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/web/icons/Icon-192.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/web/icons/Icon-512.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/web/index.html -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/web/manifest.json -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/web/python-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/web/python-worker.js -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/web/python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/web/python.js -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/windows/.gitignore -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/windows/CMakeLists.txt -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/windows/runner/Runner.rc -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/windows/runner/main.cpp -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/windows/runner/resource.h -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/windows/runner/utils.cpp -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/windows/runner/utils.h -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /{{cookiecutter.out_dir}}/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flet-dev/flet-build-template/HEAD/{{cookiecutter.out_dir}}/windows/runner/win32_window.h --------------------------------------------------------------------------------