diff --git a/.fvm/fvm_config.json b/.fvm/fvm_config.json index e3ffe0b4..d8abe1b9 100644 --- a/.fvm/fvm_config.json +++ b/.fvm/fvm_config.json @@ -1,4 +1,4 @@ { - "flutterSdkVersion": "3.13.4", + "flutterSdkVersion": "3.13.9", "flavors": {} } \ No newline at end of file diff --git a/analysis_options.yaml b/analysis_options.yaml index 3bc113a6..b6e00af1 100644 --- a/analysis_options.yaml +++ b/analysis_options.yaml @@ -1,14 +1,4 @@ -# This file configures the analyzer, which statically analyzes Dart code to -# check for errors, warnings, and lints. -# -# The issues identified by the analyzer are surfaced in the UI of Dart-enabled -# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be -# invoked from the command line by running `flutter analyze`. - -# The following line activates a set of recommended lints for Flutter apps, -# packages, and plugins designed to encourage good coding practices. include: package:flutter_lints/flutter.yaml - linter: rules: - always_declare_return_types @@ -136,3 +126,4 @@ analyzer: - 'lib/generated_plugin_registrant.dart' errors: invalid_annotation_target: ignore + unused_element: ignore # https://github.com/dart-lang/sdk/issues/49025 diff --git a/catalog/.gitignore b/catalog/.gitignore new file mode 100644 index 00000000..96486fd9 --- /dev/null +++ b/catalog/.gitignore @@ -0,0 +1,30 @@ +# Miscellaneous +*.class +*.log +*.pyc +*.swp +.DS_Store +.atom/ +.buildlog/ +.history +.svn/ +migrate_working_dir/ + +# IntelliJ related +*.iml +*.ipr +*.iws +.idea/ + +# The .vscode folder contains launch configuration and tasks you configure in +# VS Code which you may wish to be included in version control, so this line +# is commented out by default. +#.vscode/ + +# Flutter/Dart/Pub related +# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock. +/pubspec.lock +**/doc/api/ +.dart_tool/ +.packages +build/ diff --git a/catalog/.metadata b/catalog/.metadata new file mode 100644 index 00000000..e5c802c4 --- /dev/null +++ b/catalog/.metadata @@ -0,0 +1,10 @@ +# This file tracks properties of this Flutter project. +# Used by Flutter tool to assess capabilities and perform upgrades etc. +# +# This file should be version controlled and should not be manually edited. + +version: + revision: "367f9ea16bfae1ca451b9cc27c1366870b187ae2" + channel: "stable" + +project_type: package diff --git a/catalog/README.md b/catalog/README.md new file mode 100644 index 00000000..02fe8eca --- /dev/null +++ b/catalog/README.md @@ -0,0 +1,39 @@ + + +TODO: Put a short description of the package here that helps potential users +know whether this package might be useful for them. + +## Features + +TODO: List what your package can do. Maybe include images, gifs, or videos. + +## Getting started + +TODO: List prerequisites and provide or point to information on how to +start using the package. + +## Usage + +TODO: Include short and useful examples for package users. Add longer examples +to `/example` folder. + +```dart +const like = 'sample'; +``` + +## Additional information + +TODO: Tell users more about the package: where to find more information, how to +contribute to the package, how to file issues, what response they can expect +from the package authors, and more. diff --git a/catalog/analysis_options.yaml b/catalog/analysis_options.yaml new file mode 100644 index 00000000..5e2133eb --- /dev/null +++ b/catalog/analysis_options.yaml @@ -0,0 +1 @@ +include: ../analysis_options.yaml diff --git a/catalog/gallery/.gitignore b/catalog/gallery/.gitignore new file mode 100644 index 00000000..24476c5d --- /dev/null +++ b/catalog/gallery/.gitignore @@ -0,0 +1,44 @@ +# Miscellaneous +*.class +*.log +*.pyc +*.swp +.DS_Store +.atom/ +.buildlog/ +.history +.svn/ +migrate_working_dir/ + +# IntelliJ related +*.iml +*.ipr +*.iws +.idea/ + +# The .vscode folder contains launch configuration and tasks you configure in +# VS Code which you may wish to be included in version control, so this line +# is commented out by default. +#.vscode/ + +# Flutter/Dart/Pub related +**/doc/api/ +**/ios/Flutter/.last_build_id +.dart_tool/ +.flutter-plugins +.flutter-plugins-dependencies +.packages +.pub-cache/ +.pub/ +/build/ + +# Symbolication related +app.*.symbols + +# Obfuscation related +app.*.map.json + +# Android Studio will place build artifacts here +/android/app/debug +/android/app/profile +/android/app/release diff --git a/catalog/gallery/.metadata b/catalog/gallery/.metadata new file mode 100644 index 00000000..2bb8bb75 --- /dev/null +++ b/catalog/gallery/.metadata @@ -0,0 +1,36 @@ +# This file tracks properties of this Flutter project. +# Used by Flutter tool to assess capabilities and perform upgrades etc. +# +# This file should be version controlled and should not be manually edited. + +version: + revision: "367f9ea16bfae1ca451b9cc27c1366870b187ae2" + channel: "stable" + +project_type: app + +# Tracks metadata for the flutter migrate command +migration: + platforms: + - platform: root + create_revision: 367f9ea16bfae1ca451b9cc27c1366870b187ae2 + base_revision: 367f9ea16bfae1ca451b9cc27c1366870b187ae2 + - platform: android + create_revision: 367f9ea16bfae1ca451b9cc27c1366870b187ae2 + base_revision: 367f9ea16bfae1ca451b9cc27c1366870b187ae2 + - platform: ios + create_revision: 367f9ea16bfae1ca451b9cc27c1366870b187ae2 + base_revision: 367f9ea16bfae1ca451b9cc27c1366870b187ae2 + - platform: web + create_revision: 367f9ea16bfae1ca451b9cc27c1366870b187ae2 + base_revision: 367f9ea16bfae1ca451b9cc27c1366870b187ae2 + + # User provided section + + # List of Local paths (relative to this file) that should be + # ignored by the migrate tool. + # + # Files that are not part of the templates will be ignored by default. + unmanaged_files: + - 'lib/main.dart' + - 'ios/Runner.xcodeproj/project.pbxproj' diff --git a/catalog/gallery/analysis_options.yaml b/catalog/gallery/analysis_options.yaml new file mode 100644 index 00000000..f04c6cf0 --- /dev/null +++ b/catalog/gallery/analysis_options.yaml @@ -0,0 +1 @@ +include: ../../analysis_options.yaml diff --git a/catalog/gallery/android/.gitignore b/catalog/gallery/android/.gitignore new file mode 100644 index 00000000..6f568019 --- /dev/null +++ b/catalog/gallery/android/.gitignore @@ -0,0 +1,13 @@ +gradle-wrapper.jar +/.gradle +/captures/ +/gradlew +/gradlew.bat +/local.properties +GeneratedPluginRegistrant.java + +# Remember to never publicly share your keystore. +# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app +key.properties +**/*.keystore +**/*.jks diff --git a/catalog/gallery/android/Gemfile b/catalog/gallery/android/Gemfile new file mode 100644 index 00000000..7a118b49 --- /dev/null +++ b/catalog/gallery/android/Gemfile @@ -0,0 +1,3 @@ +source "https://rubygems.org" + +gem "fastlane" diff --git a/catalog/gallery/android/Gemfile.lock b/catalog/gallery/android/Gemfile.lock new file mode 100644 index 00000000..f595af06 --- /dev/null +++ b/catalog/gallery/android/Gemfile.lock @@ -0,0 +1,217 @@ +GEM + remote: https://rubygems.org/ + specs: + CFPropertyList (3.0.6) + rexml + addressable (2.8.5) + public_suffix (>= 2.0.2, < 6.0) + artifactory (3.0.15) + atomos (0.1.3) + aws-eventstream (1.2.0) + aws-partitions (1.844.0) + aws-sdk-core (3.186.0) + aws-eventstream (~> 1, >= 1.0.2) + aws-partitions (~> 1, >= 1.651.0) + aws-sigv4 (~> 1.5) + jmespath (~> 1, >= 1.6.1) + aws-sdk-kms (1.72.0) + aws-sdk-core (~> 3, >= 3.184.0) + aws-sigv4 (~> 1.1) + aws-sdk-s3 (1.136.0) + aws-sdk-core (~> 3, >= 3.181.0) + aws-sdk-kms (~> 1) + aws-sigv4 (~> 1.6) + aws-sigv4 (1.6.1) + aws-eventstream (~> 1, >= 1.0.2) + babosa (1.0.4) + claide (1.1.0) + colored (1.2) + colored2 (3.1.2) + commander (4.6.0) + highline (~> 2.0.0) + declarative (0.0.20) + digest-crc (0.6.5) + rake (>= 12.0.0, < 14.0.0) + domain_name (0.5.20190701) + unf (>= 0.0.5, < 1.0.0) + dotenv (2.8.1) + emoji_regex (3.2.3) + excon (0.104.0) + faraday (1.10.3) + faraday-em_http (~> 1.0) + faraday-em_synchrony (~> 1.0) + faraday-excon (~> 1.1) + faraday-httpclient (~> 1.0) + faraday-multipart (~> 1.0) + faraday-net_http (~> 1.0) + faraday-net_http_persistent (~> 1.0) + faraday-patron (~> 1.0) + faraday-rack (~> 1.0) + faraday-retry (~> 1.0) + ruby2_keywords (>= 0.0.4) + faraday-cookie_jar (0.0.7) + faraday (>= 0.8.0) + http-cookie (~> 1.0.0) + faraday-em_http (1.0.0) + faraday-em_synchrony (1.0.0) + faraday-excon (1.1.0) + faraday-httpclient (1.0.1) + faraday-multipart (1.0.4) + multipart-post (~> 2) + faraday-net_http (1.0.1) + faraday-net_http_persistent (1.2.0) + faraday-patron (1.0.0) + faraday-rack (1.0.0) + faraday-retry (1.0.3) + faraday_middleware (1.2.0) + faraday (~> 1.0) + fastimage (2.2.7) + fastlane (2.216.0) + CFPropertyList (>= 2.3, < 4.0.0) + addressable (>= 2.8, < 3.0.0) + artifactory (~> 3.0) + aws-sdk-s3 (~> 1.0) + babosa (>= 1.0.3, < 2.0.0) + bundler (>= 1.12.0, < 3.0.0) + colored + commander (~> 4.6) + dotenv (>= 2.1.1, < 3.0.0) + emoji_regex (>= 0.1, < 4.0) + excon (>= 0.71.0, < 1.0.0) + faraday (~> 1.0) + faraday-cookie_jar (~> 0.0.6) + faraday_middleware (~> 1.0) + fastimage (>= 2.1.0, < 3.0.0) + gh_inspector (>= 1.1.2, < 2.0.0) + google-apis-androidpublisher_v3 (~> 0.3) + google-apis-playcustomapp_v1 (~> 0.1) + google-cloud-storage (~> 1.31) + highline (~> 2.0) + http-cookie (~> 1.0.5) + json (< 3.0.0) + jwt (>= 2.1.0, < 3) + mini_magick (>= 4.9.4, < 5.0.0) + multipart-post (>= 2.0.0, < 3.0.0) + naturally (~> 2.2) + optparse (~> 0.1.1) + plist (>= 3.1.0, < 4.0.0) + rubyzip (>= 2.0.0, < 3.0.0) + security (= 0.1.3) + simctl (~> 1.6.3) + terminal-notifier (>= 2.0.0, < 3.0.0) + terminal-table (~> 3) + tty-screen (>= 0.6.3, < 1.0.0) + tty-spinner (>= 0.8.0, < 1.0.0) + word_wrap (~> 1.0.0) + xcodeproj (>= 1.13.0, < 2.0.0) + xcpretty (~> 0.3.0) + xcpretty-travis-formatter (>= 0.0.3) + gh_inspector (1.1.3) + google-apis-androidpublisher_v3 (0.51.0) + google-apis-core (>= 0.11.0, < 2.a) + google-apis-core (0.11.2) + addressable (~> 2.5, >= 2.5.1) + googleauth (>= 0.16.2, < 2.a) + httpclient (>= 2.8.1, < 3.a) + mini_mime (~> 1.0) + representable (~> 3.0) + retriable (>= 2.0, < 4.a) + rexml + webrick + google-apis-iamcredentials_v1 (0.17.0) + google-apis-core (>= 0.11.0, < 2.a) + google-apis-playcustomapp_v1 (0.13.0) + google-apis-core (>= 0.11.0, < 2.a) + google-apis-storage_v1 (0.19.0) + google-apis-core (>= 0.9.0, < 2.a) + google-cloud-core (1.6.0) + google-cloud-env (~> 1.0) + google-cloud-errors (~> 1.0) + google-cloud-env (1.6.0) + faraday (>= 0.17.3, < 3.0) + google-cloud-errors (1.3.1) + google-cloud-storage (1.44.0) + addressable (~> 2.8) + digest-crc (~> 0.4) + google-apis-iamcredentials_v1 (~> 0.1) + google-apis-storage_v1 (~> 0.19.0) + google-cloud-core (~> 1.6) + googleauth (>= 0.16.2, < 2.a) + mini_mime (~> 1.0) + googleauth (1.8.1) + faraday (>= 0.17.3, < 3.a) + jwt (>= 1.4, < 3.0) + multi_json (~> 1.11) + os (>= 0.9, < 2.0) + signet (>= 0.16, < 2.a) + highline (2.0.3) + http-cookie (1.0.5) + domain_name (~> 0.5) + httpclient (2.8.3) + jmespath (1.6.2) + json (2.6.3) + jwt (2.7.1) + mini_magick (4.12.0) + mini_mime (1.1.5) + multi_json (1.15.0) + multipart-post (2.3.0) + nanaimo (0.3.0) + naturally (2.2.1) + optparse (0.1.1) + os (1.1.4) + plist (3.7.0) + public_suffix (5.0.3) + rake (13.1.0) + representable (3.2.0) + declarative (< 0.1.0) + trailblazer-option (>= 0.1.1, < 0.2.0) + uber (< 0.2.0) + retriable (3.1.2) + rexml (3.2.6) + rouge (2.0.7) + ruby2_keywords (0.0.5) + rubyzip (2.3.2) + security (0.1.3) + signet (0.18.0) + addressable (~> 2.8) + faraday (>= 0.17.5, < 3.a) + jwt (>= 1.5, < 3.0) + multi_json (~> 1.10) + simctl (1.6.10) + CFPropertyList + naturally + terminal-notifier (2.0.0) + terminal-table (3.0.2) + unicode-display_width (>= 1.1.1, < 3) + trailblazer-option (0.1.2) + tty-cursor (0.7.1) + tty-screen (0.8.1) + tty-spinner (0.9.3) + tty-cursor (~> 0.7) + uber (0.1.0) + unf (0.1.4) + unf_ext + unf_ext (0.0.8.2) + unicode-display_width (2.5.0) + webrick (1.8.1) + word_wrap (1.0.0) + xcodeproj (1.23.0) + CFPropertyList (>= 2.3.3, < 4.0) + atomos (~> 0.1.3) + claide (>= 1.0.2, < 2.0) + colored2 (~> 3.1) + nanaimo (~> 0.3.0) + rexml (~> 3.2.4) + xcpretty (0.3.0) + rouge (~> 2.0.7) + xcpretty-travis-formatter (1.0.1) + xcpretty (~> 0.2, >= 0.0.7) + +PLATFORMS + x86_64-darwin-21 + +DEPENDENCIES + fastlane + +BUNDLED WITH + 2.4.10 diff --git a/catalog/gallery/android/app/build.gradle b/catalog/gallery/android/app/build.gradle new file mode 100644 index 00000000..82fb0393 --- /dev/null +++ b/catalog/gallery/android/app/build.gradle @@ -0,0 +1,67 @@ +plugins { + id "com.android.application" + id "kotlin-android" + id "dev.flutter.flutter-gradle-plugin" +} + +def localProperties = new Properties() +def localPropertiesFile = rootProject.file('local.properties') +if (localPropertiesFile.exists()) { + localPropertiesFile.withReader('UTF-8') { reader -> + localProperties.load(reader) + } +} + +def flutterVersionCode = localProperties.getProperty('flutter.versionCode') +if (flutterVersionCode == null) { + flutterVersionCode = '1' +} + +def flutterVersionName = localProperties.getProperty('flutter.versionName') +if (flutterVersionName == null) { + flutterVersionName = '1.0' +} + +android { + namespace "com.example.gallery" + compileSdkVersion flutter.compileSdkVersion + ndkVersion flutter.ndkVersion + + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } + + kotlinOptions { + jvmTarget = '1.8' + } + + sourceSets { + main.java.srcDirs += 'src/main/kotlin' + } + + defaultConfig { + // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). + applicationId "com.example.gallery" + // You can update the following values to match your application needs. + // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration. + minSdkVersion flutter.minSdkVersion + targetSdkVersion flutter.targetSdkVersion + versionCode flutterVersionCode.toInteger() + versionName flutterVersionName + } + + buildTypes { + release { + // TODO: Add your own signing config for the release build. + // Signing with the debug keys for now, so `flutter run --release` works. + signingConfig signingConfigs.debug + } + } +} + +flutter { + source '../..' +} + +dependencies {} diff --git a/catalog/gallery/android/app/src/debug/AndroidManifest.xml b/catalog/gallery/android/app/src/debug/AndroidManifest.xml new file mode 100644 index 00000000..399f6981 --- /dev/null +++ b/catalog/gallery/android/app/src/debug/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + diff --git a/catalog/gallery/android/app/src/main/AndroidManifest.xml b/catalog/gallery/android/app/src/main/AndroidManifest.xml new file mode 100644 index 00000000..edbeb145 --- /dev/null +++ b/catalog/gallery/android/app/src/main/AndroidManifest.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + diff --git a/catalog/gallery/android/app/src/main/kotlin/com/example/gallery/MainActivity.kt b/catalog/gallery/android/app/src/main/kotlin/com/example/gallery/MainActivity.kt new file mode 100644 index 00000000..4aa5a1d0 --- /dev/null +++ b/catalog/gallery/android/app/src/main/kotlin/com/example/gallery/MainActivity.kt @@ -0,0 +1,6 @@ +package com.example.gallery + +import io.flutter.embedding.android.FlutterActivity + +class MainActivity: FlutterActivity() { +} diff --git a/catalog/gallery/android/app/src/main/res/drawable-hdpi-v31/android12branding.png b/catalog/gallery/android/app/src/main/res/drawable-hdpi-v31/android12branding.png new file mode 100644 index 00000000..d28948ff Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/drawable-hdpi-v31/android12branding.png differ diff --git a/catalog/gallery/android/app/src/main/res/drawable-hdpi/android12splash.png b/catalog/gallery/android/app/src/main/res/drawable-hdpi/android12splash.png new file mode 100644 index 00000000..07b1c18f Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/drawable-hdpi/android12splash.png differ diff --git a/catalog/gallery/android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png b/catalog/gallery/android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png new file mode 100644 index 00000000..e6cba59b Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png differ diff --git a/catalog/gallery/android/app/src/main/res/drawable-hdpi/splash.png b/catalog/gallery/android/app/src/main/res/drawable-hdpi/splash.png new file mode 100644 index 00000000..5121a08c Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/drawable-hdpi/splash.png differ diff --git a/catalog/gallery/android/app/src/main/res/drawable-mdpi-v31/android12branding.png b/catalog/gallery/android/app/src/main/res/drawable-mdpi-v31/android12branding.png new file mode 100644 index 00000000..12872bf6 Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/drawable-mdpi-v31/android12branding.png differ diff --git a/catalog/gallery/android/app/src/main/res/drawable-mdpi/android12splash.png b/catalog/gallery/android/app/src/main/res/drawable-mdpi/android12splash.png new file mode 100644 index 00000000..47fcf48c Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/drawable-mdpi/android12splash.png differ diff --git a/catalog/gallery/android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png b/catalog/gallery/android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png new file mode 100644 index 00000000..c272c1dc Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png differ diff --git a/catalog/gallery/android/app/src/main/res/drawable-mdpi/splash.png b/catalog/gallery/android/app/src/main/res/drawable-mdpi/splash.png new file mode 100644 index 00000000..2544b5c6 Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/drawable-mdpi/splash.png differ diff --git a/catalog/gallery/android/app/src/main/res/drawable-night-hdpi-v31/android12branding.png b/catalog/gallery/android/app/src/main/res/drawable-night-hdpi-v31/android12branding.png new file mode 100644 index 00000000..d28948ff Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/drawable-night-hdpi-v31/android12branding.png differ diff --git a/catalog/gallery/android/app/src/main/res/drawable-night-hdpi/android12splash.png b/catalog/gallery/android/app/src/main/res/drawable-night-hdpi/android12splash.png new file mode 100644 index 00000000..07b1c18f Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/drawable-night-hdpi/android12splash.png differ diff --git a/catalog/gallery/android/app/src/main/res/drawable-night-mdpi-v31/android12branding.png b/catalog/gallery/android/app/src/main/res/drawable-night-mdpi-v31/android12branding.png new file mode 100644 index 00000000..12872bf6 Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/drawable-night-mdpi-v31/android12branding.png differ diff --git a/catalog/gallery/android/app/src/main/res/drawable-night-mdpi/android12splash.png b/catalog/gallery/android/app/src/main/res/drawable-night-mdpi/android12splash.png new file mode 100644 index 00000000..47fcf48c Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/drawable-night-mdpi/android12splash.png differ diff --git a/catalog/gallery/android/app/src/main/res/drawable-night-xhdpi-v31/android12branding.png b/catalog/gallery/android/app/src/main/res/drawable-night-xhdpi-v31/android12branding.png new file mode 100644 index 00000000..1c4646f3 Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/drawable-night-xhdpi-v31/android12branding.png differ diff --git a/catalog/gallery/android/app/src/main/res/drawable-night-xhdpi/android12splash.png b/catalog/gallery/android/app/src/main/res/drawable-night-xhdpi/android12splash.png new file mode 100644 index 00000000..7f0a2579 Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/drawable-night-xhdpi/android12splash.png differ diff --git a/catalog/gallery/android/app/src/main/res/drawable-night-xxhdpi-v31/android12branding.png b/catalog/gallery/android/app/src/main/res/drawable-night-xxhdpi-v31/android12branding.png new file mode 100644 index 00000000..0358cdf1 Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/drawable-night-xxhdpi-v31/android12branding.png differ diff --git a/catalog/gallery/android/app/src/main/res/drawable-night-xxhdpi/android12splash.png b/catalog/gallery/android/app/src/main/res/drawable-night-xxhdpi/android12splash.png new file mode 100644 index 00000000..73a4afc1 Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/drawable-night-xxhdpi/android12splash.png differ diff --git a/catalog/gallery/android/app/src/main/res/drawable-night-xxxhdpi-v31/android12branding.png b/catalog/gallery/android/app/src/main/res/drawable-night-xxxhdpi-v31/android12branding.png new file mode 100644 index 00000000..83f22e12 Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/drawable-night-xxxhdpi-v31/android12branding.png differ diff --git a/catalog/gallery/android/app/src/main/res/drawable-night-xxxhdpi/android12splash.png b/catalog/gallery/android/app/src/main/res/drawable-night-xxxhdpi/android12splash.png new file mode 100644 index 00000000..2e159e1e Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/drawable-night-xxxhdpi/android12splash.png differ diff --git a/catalog/gallery/android/app/src/main/res/drawable-v21/background.png b/catalog/gallery/android/app/src/main/res/drawable-v21/background.png new file mode 100644 index 00000000..3107d37f Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/drawable-v21/background.png differ diff --git a/catalog/gallery/android/app/src/main/res/drawable-v21/launch_background.xml b/catalog/gallery/android/app/src/main/res/drawable-v21/launch_background.xml new file mode 100644 index 00000000..3cc4948a --- /dev/null +++ b/catalog/gallery/android/app/src/main/res/drawable-v21/launch_background.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/catalog/gallery/android/app/src/main/res/drawable-xhdpi-v31/android12branding.png b/catalog/gallery/android/app/src/main/res/drawable-xhdpi-v31/android12branding.png new file mode 100644 index 00000000..1c4646f3 Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/drawable-xhdpi-v31/android12branding.png differ diff --git a/catalog/gallery/android/app/src/main/res/drawable-xhdpi/android12splash.png b/catalog/gallery/android/app/src/main/res/drawable-xhdpi/android12splash.png new file mode 100644 index 00000000..7f0a2579 Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/drawable-xhdpi/android12splash.png differ diff --git a/catalog/gallery/android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png b/catalog/gallery/android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png new file mode 100644 index 00000000..a78a151e Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png differ diff --git a/catalog/gallery/android/app/src/main/res/drawable-xhdpi/splash.png b/catalog/gallery/android/app/src/main/res/drawable-xhdpi/splash.png new file mode 100644 index 00000000..ca38ed17 Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/drawable-xhdpi/splash.png differ diff --git a/catalog/gallery/android/app/src/main/res/drawable-xxhdpi-v31/android12branding.png b/catalog/gallery/android/app/src/main/res/drawable-xxhdpi-v31/android12branding.png new file mode 100644 index 00000000..0358cdf1 Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/drawable-xxhdpi-v31/android12branding.png differ diff --git a/catalog/gallery/android/app/src/main/res/drawable-xxhdpi/android12splash.png b/catalog/gallery/android/app/src/main/res/drawable-xxhdpi/android12splash.png new file mode 100644 index 00000000..73a4afc1 Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/drawable-xxhdpi/android12splash.png differ diff --git a/catalog/gallery/android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png b/catalog/gallery/android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png new file mode 100644 index 00000000..b11e378b Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png differ diff --git a/catalog/gallery/android/app/src/main/res/drawable-xxhdpi/splash.png b/catalog/gallery/android/app/src/main/res/drawable-xxhdpi/splash.png new file mode 100644 index 00000000..ee10389d Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/drawable-xxhdpi/splash.png differ diff --git a/catalog/gallery/android/app/src/main/res/drawable-xxxhdpi-v31/android12branding.png b/catalog/gallery/android/app/src/main/res/drawable-xxxhdpi-v31/android12branding.png new file mode 100644 index 00000000..83f22e12 Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/drawable-xxxhdpi-v31/android12branding.png differ diff --git a/catalog/gallery/android/app/src/main/res/drawable-xxxhdpi/android12splash.png b/catalog/gallery/android/app/src/main/res/drawable-xxxhdpi/android12splash.png new file mode 100644 index 00000000..2e159e1e Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/drawable-xxxhdpi/android12splash.png differ diff --git a/catalog/gallery/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png b/catalog/gallery/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png new file mode 100644 index 00000000..f118b438 Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png differ diff --git a/catalog/gallery/android/app/src/main/res/drawable-xxxhdpi/splash.png b/catalog/gallery/android/app/src/main/res/drawable-xxxhdpi/splash.png new file mode 100644 index 00000000..1b6630ed Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/drawable-xxxhdpi/splash.png differ diff --git a/catalog/gallery/android/app/src/main/res/drawable/background.png b/catalog/gallery/android/app/src/main/res/drawable/background.png new file mode 100644 index 00000000..3107d37f Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/drawable/background.png differ diff --git a/catalog/gallery/android/app/src/main/res/drawable/launch_background.xml b/catalog/gallery/android/app/src/main/res/drawable/launch_background.xml new file mode 100644 index 00000000..3cc4948a --- /dev/null +++ b/catalog/gallery/android/app/src/main/res/drawable/launch_background.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/catalog/gallery/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/catalog/gallery/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 00000000..5f349f7f --- /dev/null +++ b/catalog/gallery/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/catalog/gallery/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/catalog/gallery/android/app/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 00000000..4201d924 Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/catalog/gallery/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/catalog/gallery/android/app/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 00000000..a3ecae8e Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/catalog/gallery/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/catalog/gallery/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 00000000..b63f2829 Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/catalog/gallery/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/catalog/gallery/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 00000000..35f1410e Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/catalog/gallery/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/catalog/gallery/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 00000000..a87df636 Binary files /dev/null and b/catalog/gallery/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/catalog/gallery/android/app/src/main/res/values-night-v31/styles.xml b/catalog/gallery/android/app/src/main/res/values-night-v31/styles.xml new file mode 100644 index 00000000..4f1c3f99 --- /dev/null +++ b/catalog/gallery/android/app/src/main/res/values-night-v31/styles.xml @@ -0,0 +1,22 @@ + + + + + + + diff --git a/catalog/gallery/android/app/src/main/res/values-night/styles.xml b/catalog/gallery/android/app/src/main/res/values-night/styles.xml new file mode 100644 index 00000000..dbc9ea9f --- /dev/null +++ b/catalog/gallery/android/app/src/main/res/values-night/styles.xml @@ -0,0 +1,22 @@ + + + + + + + diff --git a/catalog/gallery/android/app/src/main/res/values-v31/styles.xml b/catalog/gallery/android/app/src/main/res/values-v31/styles.xml new file mode 100644 index 00000000..a0e12b24 --- /dev/null +++ b/catalog/gallery/android/app/src/main/res/values-v31/styles.xml @@ -0,0 +1,22 @@ + + + + + + + diff --git a/catalog/gallery/android/app/src/main/res/values/colors.xml b/catalog/gallery/android/app/src/main/res/values/colors.xml new file mode 100644 index 00000000..7e0e15dd --- /dev/null +++ b/catalog/gallery/android/app/src/main/res/values/colors.xml @@ -0,0 +1,4 @@ + + + #ee1a64 + \ No newline at end of file diff --git a/catalog/gallery/android/app/src/main/res/values/styles.xml b/catalog/gallery/android/app/src/main/res/values/styles.xml new file mode 100644 index 00000000..0d1fa8fc --- /dev/null +++ b/catalog/gallery/android/app/src/main/res/values/styles.xml @@ -0,0 +1,22 @@ + + + + + + + diff --git a/catalog/gallery/android/app/src/profile/AndroidManifest.xml b/catalog/gallery/android/app/src/profile/AndroidManifest.xml new file mode 100644 index 00000000..399f6981 --- /dev/null +++ b/catalog/gallery/android/app/src/profile/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + diff --git a/catalog/gallery/android/build.gradle b/catalog/gallery/android/build.gradle new file mode 100644 index 00000000..f7eb7f63 --- /dev/null +++ b/catalog/gallery/android/build.gradle @@ -0,0 +1,31 @@ +buildscript { + ext.kotlin_version = '1.7.10' + repositories { + google() + mavenCentral() + } + + dependencies { + classpath 'com.android.tools.build:gradle:7.3.0' + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + } +} + +allprojects { + repositories { + google() + mavenCentral() + } +} + +rootProject.buildDir = '../build' +subprojects { + project.buildDir = "${rootProject.buildDir}/${project.name}" +} +subprojects { + project.evaluationDependsOn(':app') +} + +tasks.register("clean", Delete) { + delete rootProject.buildDir +} diff --git a/catalog/gallery/android/fastlane/Appfile b/catalog/gallery/android/fastlane/Appfile new file mode 100644 index 00000000..c6bb5c4a --- /dev/null +++ b/catalog/gallery/android/fastlane/Appfile @@ -0,0 +1,2 @@ +json_key_file("") # Path to the json secret file - Follow https://docs.fastlane.tools/actions/supply/#setup to get one +package_name("catalog") # e.g. com.krausefx.app diff --git a/catalog/gallery/android/fastlane/Fastfile b/catalog/gallery/android/fastlane/Fastfile new file mode 100644 index 00000000..19c557cc --- /dev/null +++ b/catalog/gallery/android/fastlane/Fastfile @@ -0,0 +1,38 @@ +# This file contains the fastlane.tools configuration +# You can find the documentation at https://docs.fastlane.tools +# +# For a list of all available actions, check out +# +# https://docs.fastlane.tools/actions +# +# For a list of all available plugins, check out +# +# https://docs.fastlane.tools/plugins/available-plugins +# + +# Uncomment the line if you want fastlane to automatically update itself +# update_fastlane + +default_platform(:android) + +platform :android do + desc "Runs all the tests" + lane :test do + gradle(task: "test") + end + + desc "Submit a new Beta Build to Crashlytics Beta" + lane :beta do + gradle(task: "clean assembleRelease") + crashlytics + + # sh "your_script.sh" + # You can also use other beta testing services here + end + + desc "Deploy a new version to the Google Play" + lane :deploy do + gradle(task: "clean assembleRelease") + upload_to_play_store + end +end diff --git a/catalog/gallery/android/gradle.properties b/catalog/gallery/android/gradle.properties new file mode 100644 index 00000000..94adc3a3 --- /dev/null +++ b/catalog/gallery/android/gradle.properties @@ -0,0 +1,3 @@ +org.gradle.jvmargs=-Xmx1536M +android.useAndroidX=true +android.enableJetifier=true diff --git a/catalog/gallery/android/gradle/wrapper/gradle-wrapper.properties b/catalog/gallery/android/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 00000000..3c472b99 --- /dev/null +++ b/catalog/gallery/android/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,5 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip diff --git a/catalog/gallery/android/settings.gradle b/catalog/gallery/android/settings.gradle new file mode 100644 index 00000000..55c4ca8b --- /dev/null +++ b/catalog/gallery/android/settings.gradle @@ -0,0 +1,20 @@ +pluginManagement { + def flutterSdkPath = { + def properties = new Properties() + file("local.properties").withInputStream { properties.load(it) } + def flutterSdkPath = properties.getProperty("flutter.sdk") + assert flutterSdkPath != null, "flutter.sdk not set in local.properties" + return flutterSdkPath + } + settings.ext.flutterSdkPath = flutterSdkPath() + + includeBuild("${settings.ext.flutterSdkPath}/packages/flutter_tools/gradle") + + plugins { + id "dev.flutter.flutter-gradle-plugin" version "1.0.0" apply false + } +} + +include ":app" + +apply from: "${settings.ext.flutterSdkPath}/packages/flutter_tools/gradle/app_plugin_loader.gradle" diff --git a/catalog/gallery/icons/ic_launcher.png b/catalog/gallery/icons/ic_launcher.png new file mode 100644 index 00000000..16abf55a Binary files /dev/null and b/catalog/gallery/icons/ic_launcher.png differ diff --git a/catalog/gallery/icons/ic_launcher_foreground.png b/catalog/gallery/icons/ic_launcher_foreground.png new file mode 100644 index 00000000..3d8563b5 Binary files /dev/null and b/catalog/gallery/icons/ic_launcher_foreground.png differ diff --git a/catalog/gallery/icons/ic_launcher_ios.png b/catalog/gallery/icons/ic_launcher_ios.png new file mode 100644 index 00000000..7af7f93a Binary files /dev/null and b/catalog/gallery/icons/ic_launcher_ios.png differ diff --git a/catalog/gallery/icons/splash_branding.png b/catalog/gallery/icons/splash_branding.png new file mode 100644 index 00000000..e126e4d6 Binary files /dev/null and b/catalog/gallery/icons/splash_branding.png differ diff --git a/catalog/gallery/icons/splash_logo.png b/catalog/gallery/icons/splash_logo.png new file mode 100644 index 00000000..9df7387a Binary files /dev/null and b/catalog/gallery/icons/splash_logo.png differ diff --git a/catalog/gallery/icons/splash_logo_android_12.png b/catalog/gallery/icons/splash_logo_android_12.png new file mode 100644 index 00000000..03540184 Binary files /dev/null and b/catalog/gallery/icons/splash_logo_android_12.png differ diff --git a/catalog/gallery/ios/.gitignore b/catalog/gallery/ios/.gitignore new file mode 100644 index 00000000..7a7f9873 --- /dev/null +++ b/catalog/gallery/ios/.gitignore @@ -0,0 +1,34 @@ +**/dgph +*.mode1v3 +*.mode2v3 +*.moved-aside +*.pbxuser +*.perspectivev3 +**/*sync/ +.sconsign.dblite +.tags* +**/.vagrant/ +**/DerivedData/ +Icon? +**/Pods/ +**/.symlinks/ +profile +xcuserdata +**/.generated/ +Flutter/App.framework +Flutter/Flutter.framework +Flutter/Flutter.podspec +Flutter/Generated.xcconfig +Flutter/ephemeral/ +Flutter/app.flx +Flutter/app.zip +Flutter/flutter_assets/ +Flutter/flutter_export_environment.sh +ServiceDefinitions.json +Runner/GeneratedPluginRegistrant.* + +# Exceptions to above rules. +!default.mode1v3 +!default.mode2v3 +!default.pbxuser +!default.perspectivev3 diff --git a/catalog/gallery/ios/Flutter/AppFrameworkInfo.plist b/catalog/gallery/ios/Flutter/AppFrameworkInfo.plist new file mode 100644 index 00000000..9625e105 --- /dev/null +++ b/catalog/gallery/ios/Flutter/AppFrameworkInfo.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + App + CFBundleIdentifier + io.flutter.flutter.app + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + App + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1.0 + MinimumOSVersion + 11.0 + + diff --git a/catalog/gallery/ios/Flutter/Debug.xcconfig b/catalog/gallery/ios/Flutter/Debug.xcconfig new file mode 100644 index 00000000..ec97fc6f --- /dev/null +++ b/catalog/gallery/ios/Flutter/Debug.xcconfig @@ -0,0 +1,2 @@ +#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" +#include "Generated.xcconfig" diff --git a/catalog/gallery/ios/Flutter/Release.xcconfig b/catalog/gallery/ios/Flutter/Release.xcconfig new file mode 100644 index 00000000..c4855bfe --- /dev/null +++ b/catalog/gallery/ios/Flutter/Release.xcconfig @@ -0,0 +1,2 @@ +#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" +#include "Generated.xcconfig" diff --git a/catalog/gallery/ios/Podfile b/catalog/gallery/ios/Podfile new file mode 100644 index 00000000..fdcc671e --- /dev/null +++ b/catalog/gallery/ios/Podfile @@ -0,0 +1,44 @@ +# Uncomment this line to define a global platform for your project +# platform :ios, '11.0' + +# CocoaPods analytics sends network stats synchronously affecting flutter build latency. +ENV['COCOAPODS_DISABLE_STATS'] = 'true' + +project 'Runner', { + 'Debug' => :debug, + 'Profile' => :release, + 'Release' => :release, +} + +def flutter_root + generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__) + unless File.exist?(generated_xcode_build_settings_path) + raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first" + end + + File.foreach(generated_xcode_build_settings_path) do |line| + matches = line.match(/FLUTTER_ROOT\=(.*)/) + return matches[1].strip if matches + end + raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get" +end + +require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) + +flutter_ios_podfile_setup + +target 'Runner' do + use_frameworks! + use_modular_headers! + + flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) + target 'RunnerTests' do + inherit! :search_paths + end +end + +post_install do |installer| + installer.pods_project.targets.each do |target| + flutter_additional_ios_build_settings(target) + end +end diff --git a/catalog/gallery/ios/Podfile.lock b/catalog/gallery/ios/Podfile.lock new file mode 100644 index 00000000..eb0de2fb --- /dev/null +++ b/catalog/gallery/ios/Podfile.lock @@ -0,0 +1,29 @@ +PODS: + - Flutter (1.0.0) + - flutter_native_splash (0.0.1): + - Flutter + - path_provider_foundation (0.0.1): + - Flutter + - FlutterMacOS + +DEPENDENCIES: + - Flutter (from `Flutter`) + - flutter_native_splash (from `.symlinks/plugins/flutter_native_splash/ios`) + - path_provider_foundation (from `.symlinks/plugins/path_provider_foundation/darwin`) + +EXTERNAL SOURCES: + Flutter: + :path: Flutter + flutter_native_splash: + :path: ".symlinks/plugins/flutter_native_splash/ios" + path_provider_foundation: + :path: ".symlinks/plugins/path_provider_foundation/darwin" + +SPEC CHECKSUMS: + Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854 + flutter_native_splash: 52501b97d1c0a5f898d687f1646226c1f93c56ef + path_provider_foundation: 29f094ae23ebbca9d3d0cec13889cd9060c0e943 + +PODFILE CHECKSUM: 70d9d25280d0dd177a5f637cdb0f0b0b12c6a189 + +COCOAPODS: 1.12.1 diff --git a/catalog/gallery/ios/Runner.xcodeproj/project.pbxproj b/catalog/gallery/ios/Runner.xcodeproj/project.pbxproj new file mode 100644 index 00000000..013e7627 --- /dev/null +++ b/catalog/gallery/ios/Runner.xcodeproj/project.pbxproj @@ -0,0 +1,725 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 54; + objects = { + +/* Begin PBXBuildFile section */ + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; + 22336CBF25949E471736667F /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 959729E268E47C1704E2F6D0 /* Pods_RunnerTests.framework */; }; + 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; }; + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; + 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; + 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; + 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; + 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; + A03BE04D285909D30D1B5C2D /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 28D29128B08C0FC80B1ADB3B /* Pods_Runner.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 97C146E61CF9000F007C117D /* Project object */; + proxyType = 1; + remoteGlobalIDString = 97C146ED1CF9000F007C117D; + remoteInfo = Runner; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 9705A1C41CF9048500538489 /* Embed Frameworks */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + ); + name = "Embed Frameworks"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 0E42C8F29CE70D5F6DBD2FE7 /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = ""; }; + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; + 28D29128B08C0FC80B1ADB3B /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; }; + 331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 365FDFE932DAECCBE6CDA6C2 /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = ""; }; + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; + 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; + 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; + 7B38C402BEC14CCFB3BCC86B /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = ""; }; + 800D1436A84E4B660BFFAC2C /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; }; + 959729E268E47C1704E2F6D0 /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; + 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; + 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; + 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + AE146B1C36E0F65D9B9E0440 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; }; + B405BC34B39725B6BDF7999F /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 97C146EB1CF9000F007C117D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + A03BE04D285909D30D1B5C2D /* Pods_Runner.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B6078182E6F3D1951969F8DA /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 22336CBF25949E471736667F /* Pods_RunnerTests.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 331C8082294A63A400263BE5 /* RunnerTests */ = { + isa = PBXGroup; + children = ( + 331C807B294A618700263BE5 /* RunnerTests.swift */, + ); + path = RunnerTests; + sourceTree = ""; + }; + 497C73E8445D35C74AFD069A /* Frameworks */ = { + isa = PBXGroup; + children = ( + 28D29128B08C0FC80B1ADB3B /* Pods_Runner.framework */, + 959729E268E47C1704E2F6D0 /* Pods_RunnerTests.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 9740EEB11CF90186004384FC /* Flutter */ = { + isa = PBXGroup; + children = ( + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, + 9740EEB21CF90195004384FC /* Debug.xcconfig */, + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, + 9740EEB31CF90195004384FC /* Generated.xcconfig */, + ); + name = Flutter; + sourceTree = ""; + }; + 97C146E51CF9000F007C117D = { + isa = PBXGroup; + children = ( + 9740EEB11CF90186004384FC /* Flutter */, + 97C146F01CF9000F007C117D /* Runner */, + 97C146EF1CF9000F007C117D /* Products */, + 331C8082294A63A400263BE5 /* RunnerTests */, + E9F5E0EA082C8BBCA5DED24A /* Pods */, + 497C73E8445D35C74AFD069A /* Frameworks */, + ); + sourceTree = ""; + }; + 97C146EF1CF9000F007C117D /* Products */ = { + isa = PBXGroup; + children = ( + 97C146EE1CF9000F007C117D /* Runner.app */, + 331C8081294A63A400263BE5 /* RunnerTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 97C146F01CF9000F007C117D /* Runner */ = { + isa = PBXGroup; + children = ( + 97C146FA1CF9000F007C117D /* Main.storyboard */, + 97C146FD1CF9000F007C117D /* Assets.xcassets */, + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, + 97C147021CF9000F007C117D /* Info.plist */, + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, + 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, + 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, + ); + path = Runner; + sourceTree = ""; + }; + E9F5E0EA082C8BBCA5DED24A /* Pods */ = { + isa = PBXGroup; + children = ( + AE146B1C36E0F65D9B9E0440 /* Pods-Runner.debug.xcconfig */, + 800D1436A84E4B660BFFAC2C /* Pods-Runner.release.xcconfig */, + B405BC34B39725B6BDF7999F /* Pods-Runner.profile.xcconfig */, + 7B38C402BEC14CCFB3BCC86B /* Pods-RunnerTests.debug.xcconfig */, + 0E42C8F29CE70D5F6DBD2FE7 /* Pods-RunnerTests.release.xcconfig */, + 365FDFE932DAECCBE6CDA6C2 /* Pods-RunnerTests.profile.xcconfig */, + ); + name = Pods; + path = Pods; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 331C8080294A63A400263BE5 /* RunnerTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */; + buildPhases = ( + 5A800C66C15EFB36FD47DA67 /* [CP] Check Pods Manifest.lock */, + 331C807D294A63A400263BE5 /* Sources */, + 331C807F294A63A400263BE5 /* Resources */, + B6078182E6F3D1951969F8DA /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 331C8086294A63A400263BE5 /* PBXTargetDependency */, + ); + name = RunnerTests; + productName = RunnerTests; + productReference = 331C8081294A63A400263BE5 /* RunnerTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + 97C146ED1CF9000F007C117D /* Runner */ = { + isa = PBXNativeTarget; + buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; + buildPhases = ( + 76A0C9727A11FD4C6B7C7E66 /* [CP] Check Pods Manifest.lock */, + 9740EEB61CF901F6004384FC /* Run Script */, + 97C146EA1CF9000F007C117D /* Sources */, + 97C146EB1CF9000F007C117D /* Frameworks */, + 97C146EC1CF9000F007C117D /* Resources */, + 9705A1C41CF9048500538489 /* Embed Frameworks */, + 3B06AD1E1E4923F5004D2608 /* Thin Binary */, + 403C99EC43CBDA26E8FF45DD /* [CP] Embed Pods Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = Runner; + productName = Runner; + productReference = 97C146EE1CF9000F007C117D /* Runner.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 97C146E61CF9000F007C117D /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = YES; + LastUpgradeCheck = 1430; + ORGANIZATIONNAME = ""; + TargetAttributes = { + 331C8080294A63A400263BE5 = { + CreatedOnToolsVersion = 14.0; + TestTargetID = 97C146ED1CF9000F007C117D; + }; + 97C146ED1CF9000F007C117D = { + CreatedOnToolsVersion = 7.3.1; + LastSwiftMigration = 1100; + }; + }; + }; + buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 97C146E51CF9000F007C117D; + productRefGroup = 97C146EF1CF9000F007C117D /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 97C146ED1CF9000F007C117D /* Runner */, + 331C8080294A63A400263BE5 /* RunnerTests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 331C807F294A63A400263BE5 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 97C146EC1CF9000F007C117D /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, + 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, + 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}", + ); + name = "Thin Binary"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; + }; + 403C99EC43CBDA26E8FF45DD /* [CP] Embed Pods Frameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist", + ); + name = "[CP] Embed Pods Frameworks"; + outputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n"; + showEnvVarsInLog = 0; + }; + 5A800C66C15EFB36FD47DA67 /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-RunnerTests-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; + 76A0C9727A11FD4C6B7C7E66 /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; + 9740EEB61CF901F6004384FC /* Run Script */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Run Script"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 331C807D294A63A400263BE5 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 97C146EA1CF9000F007C117D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 331C8086294A63A400263BE5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 97C146ED1CF9000F007C117D /* Runner */; + targetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 97C146FA1CF9000F007C117D /* Main.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 97C146FB1CF9000F007C117D /* Base */, + ); + name = Main.storyboard; + sourceTree = ""; + }; + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 97C147001CF9000F007C117D /* Base */, + ); + name = LaunchScreen.storyboard; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 249021D3217E4FDB00AE95B9 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Profile; + }; + 249021D4217E4FDB00AE95B9 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + DEVELOPMENT_TEAM = R94MGT3BBR; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.example.gallery; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Profile; + }; + 331C8088294A63A400263BE5 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7B38C402BEC14CCFB3BCC86B /* Pods-RunnerTests.debug.xcconfig */; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.gallery.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; + }; + name = Debug; + }; + 331C8089294A63A400263BE5 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0E42C8F29CE70D5F6DBD2FE7 /* Pods-RunnerTests.release.xcconfig */; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.gallery.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; + }; + name = Release; + }; + 331C808A294A63A400263BE5 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 365FDFE932DAECCBE6CDA6C2 /* Pods-RunnerTests.profile.xcconfig */; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.gallery.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; + }; + name = Profile; + }; + 97C147031CF9000F007C117D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 97C147041CF9000F007C117D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 97C147061CF9000F007C117D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + DEVELOPMENT_TEAM = R94MGT3BBR; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.example.gallery; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Debug; + }; + 97C147071CF9000F007C117D /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + DEVELOPMENT_TEAM = R94MGT3BBR; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.example.gallery; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 331C8088294A63A400263BE5 /* Debug */, + 331C8089294A63A400263BE5 /* Release */, + 331C808A294A63A400263BE5 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97C147031CF9000F007C117D /* Debug */, + 97C147041CF9000F007C117D /* Release */, + 249021D3217E4FDB00AE95B9 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97C147061CF9000F007C117D /* Debug */, + 97C147071CF9000F007C117D /* Release */, + 249021D4217E4FDB00AE95B9 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 97C146E61CF9000F007C117D /* Project object */; +} diff --git a/catalog/gallery/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/catalog/gallery/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 00000000..919434a6 --- /dev/null +++ b/catalog/gallery/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/catalog/gallery/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/catalog/gallery/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 00000000..18d98100 --- /dev/null +++ b/catalog/gallery/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/catalog/gallery/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/catalog/gallery/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 00000000..f9b0d7c5 --- /dev/null +++ b/catalog/gallery/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + PreviewsEnabled + + + diff --git a/catalog/gallery/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/catalog/gallery/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme new file mode 100644 index 00000000..87131a09 --- /dev/null +++ b/catalog/gallery/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/catalog/gallery/ios/Runner.xcworkspace/contents.xcworkspacedata b/catalog/gallery/ios/Runner.xcworkspace/contents.xcworkspacedata new file mode 100644 index 00000000..21a3cc14 --- /dev/null +++ b/catalog/gallery/ios/Runner.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,10 @@ + + + + + + + diff --git a/catalog/gallery/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/catalog/gallery/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 00000000..18d98100 --- /dev/null +++ b/catalog/gallery/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/catalog/gallery/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/catalog/gallery/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 00000000..f9b0d7c5 --- /dev/null +++ b/catalog/gallery/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + PreviewsEnabled + + + diff --git a/catalog/gallery/ios/Runner/AppDelegate.swift b/catalog/gallery/ios/Runner/AppDelegate.swift new file mode 100644 index 00000000..70693e4a --- /dev/null +++ b/catalog/gallery/ios/Runner/AppDelegate.swift @@ -0,0 +1,13 @@ +import UIKit +import Flutter + +@UIApplicationMain +@objc class AppDelegate: FlutterAppDelegate { + override func application( + _ application: UIApplication, + didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? + ) -> Bool { + GeneratedPluginRegistrant.register(with: self) + return super.application(application, didFinishLaunchingWithOptions: launchOptions) + } +} diff --git a/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 00000000..d36b1fab --- /dev/null +++ b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,122 @@ +{ + "images" : [ + { + "size" : "20x20", + "idiom" : "iphone", + "filename" : "Icon-App-20x20@2x.png", + "scale" : "2x" + }, + { + "size" : "20x20", + "idiom" : "iphone", + "filename" : "Icon-App-20x20@3x.png", + "scale" : "3x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@1x.png", + "scale" : "1x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@2x.png", + "scale" : "2x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@3x.png", + "scale" : "3x" + }, + { + "size" : "40x40", + "idiom" : "iphone", + "filename" : "Icon-App-40x40@2x.png", + "scale" : "2x" + }, + { + "size" : "40x40", + "idiom" : "iphone", + "filename" : "Icon-App-40x40@3x.png", + "scale" : "3x" + }, + { + "size" : "60x60", + "idiom" : "iphone", + "filename" : "Icon-App-60x60@2x.png", + "scale" : "2x" + }, + { + "size" : "60x60", + "idiom" : "iphone", + "filename" : "Icon-App-60x60@3x.png", + "scale" : "3x" + }, + { + "size" : "20x20", + "idiom" : "ipad", + "filename" : "Icon-App-20x20@1x.png", + "scale" : "1x" + }, + { + "size" : "20x20", + "idiom" : "ipad", + "filename" : "Icon-App-20x20@2x.png", + "scale" : "2x" + }, + { + "size" : "29x29", + "idiom" : "ipad", + "filename" : "Icon-App-29x29@1x.png", + "scale" : "1x" + }, + { + "size" : "29x29", + "idiom" : "ipad", + "filename" : "Icon-App-29x29@2x.png", + "scale" : "2x" + }, + { + "size" : "40x40", + "idiom" : "ipad", + "filename" : "Icon-App-40x40@1x.png", + "scale" : "1x" + }, + { + "size" : "40x40", + "idiom" : "ipad", + "filename" : "Icon-App-40x40@2x.png", + "scale" : "2x" + }, + { + "size" : "76x76", + "idiom" : "ipad", + "filename" : "Icon-App-76x76@1x.png", + "scale" : "1x" + }, + { + "size" : "76x76", + "idiom" : "ipad", + "filename" : "Icon-App-76x76@2x.png", + "scale" : "2x" + }, + { + "size" : "83.5x83.5", + "idiom" : "ipad", + "filename" : "Icon-App-83.5x83.5@2x.png", + "scale" : "2x" + }, + { + "size" : "1024x1024", + "idiom" : "ios-marketing", + "filename" : "Icon-App-1024x1024@1x.png", + "scale" : "1x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png new file mode 100644 index 00000000..c1284680 Binary files /dev/null and b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png differ diff --git a/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png new file mode 100644 index 00000000..477f9da4 Binary files /dev/null and b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png differ diff --git a/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png new file mode 100644 index 00000000..68ff5a7c Binary files /dev/null and b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png differ diff --git a/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png new file mode 100644 index 00000000..6493d292 Binary files /dev/null and b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png differ diff --git a/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png new file mode 100644 index 00000000..0755ff4c Binary files /dev/null and b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png differ diff --git a/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png new file mode 100644 index 00000000..386b85f6 Binary files /dev/null and b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png differ diff --git a/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png new file mode 100644 index 00000000..036fadc6 Binary files /dev/null and b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png differ diff --git a/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png new file mode 100644 index 00000000..68ff5a7c Binary files /dev/null and b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png differ diff --git a/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png new file mode 100644 index 00000000..ca15efc5 Binary files /dev/null and b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png differ diff --git a/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png new file mode 100644 index 00000000..2eb91750 Binary files /dev/null and b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png differ diff --git a/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png new file mode 100644 index 00000000..13d67d79 Binary files /dev/null and b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png differ diff --git a/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png new file mode 100644 index 00000000..16410e0b Binary files /dev/null and b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png differ diff --git a/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png new file mode 100644 index 00000000..02ea4515 Binary files /dev/null and b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png differ diff --git a/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png new file mode 100644 index 00000000..f7d93f5f Binary files /dev/null and b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png differ diff --git a/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png new file mode 100644 index 00000000..2eb91750 Binary files /dev/null and b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png differ diff --git a/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png new file mode 100644 index 00000000..7f3ba377 Binary files /dev/null and b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png differ diff --git a/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png new file mode 100644 index 00000000..ded940af Binary files /dev/null and b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png differ diff --git a/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png new file mode 100644 index 00000000..115501a7 Binary files /dev/null and b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png differ diff --git a/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png new file mode 100644 index 00000000..86bc78a5 Binary files /dev/null and b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png differ diff --git a/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png new file mode 100644 index 00000000..f9e9bde5 Binary files /dev/null and b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png differ diff --git a/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png new file mode 100644 index 00000000..923e02fe Binary files /dev/null and b/catalog/gallery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png differ diff --git a/catalog/gallery/ios/Runner/Assets.xcassets/LaunchBackground.imageset/Contents.json b/catalog/gallery/ios/Runner/Assets.xcassets/LaunchBackground.imageset/Contents.json new file mode 100644 index 00000000..9f447e1b --- /dev/null +++ b/catalog/gallery/ios/Runner/Assets.xcassets/LaunchBackground.imageset/Contents.json @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "background.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/catalog/gallery/ios/Runner/Assets.xcassets/LaunchBackground.imageset/background.png b/catalog/gallery/ios/Runner/Assets.xcassets/LaunchBackground.imageset/background.png new file mode 100644 index 00000000..3107d37f Binary files /dev/null and b/catalog/gallery/ios/Runner/Assets.xcassets/LaunchBackground.imageset/background.png differ diff --git a/catalog/gallery/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/catalog/gallery/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json new file mode 100644 index 00000000..00cabce8 --- /dev/null +++ b/catalog/gallery/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "LaunchImage.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "LaunchImage@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "LaunchImage@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/catalog/gallery/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/catalog/gallery/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png new file mode 100644 index 00000000..2544b5c6 Binary files /dev/null and b/catalog/gallery/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png differ diff --git a/catalog/gallery/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/catalog/gallery/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png new file mode 100644 index 00000000..ca38ed17 Binary files /dev/null and b/catalog/gallery/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png differ diff --git a/catalog/gallery/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/catalog/gallery/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png new file mode 100644 index 00000000..ee10389d Binary files /dev/null and b/catalog/gallery/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png differ diff --git a/catalog/gallery/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/catalog/gallery/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md new file mode 100644 index 00000000..89c2725b --- /dev/null +++ b/catalog/gallery/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md @@ -0,0 +1,5 @@ +# Launch Screen Assets + +You can customize the launch screen with your own desired assets by replacing the image files in this directory. + +You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. \ No newline at end of file diff --git a/catalog/gallery/ios/Runner/Base.lproj/LaunchScreen.storyboard b/catalog/gallery/ios/Runner/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 00000000..79943897 --- /dev/null +++ b/catalog/gallery/ios/Runner/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/catalog/gallery/ios/Runner/Base.lproj/Main.storyboard b/catalog/gallery/ios/Runner/Base.lproj/Main.storyboard new file mode 100644 index 00000000..08dbc278 --- /dev/null +++ b/catalog/gallery/ios/Runner/Base.lproj/Main.storyboard @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/catalog/gallery/ios/Runner/Info.plist b/catalog/gallery/ios/Runner/Info.plist new file mode 100644 index 00000000..fa27fe16 --- /dev/null +++ b/catalog/gallery/ios/Runner/Info.plist @@ -0,0 +1,51 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleDisplayName + Gallery + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + gallery + CFBundlePackageType + APPL + CFBundleShortVersionString + $(FLUTTER_BUILD_NAME) + CFBundleSignature + ???? + CFBundleVersion + $(FLUTTER_BUILD_NUMBER) + LSRequiresIPhoneOS + + UILaunchStoryboardName + LaunchScreen + UIMainStoryboardFile + Main + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + CADisableMinimumFrameDurationOnPhone + + UIApplicationSupportsIndirectInputEvents + + UIStatusBarHidden + + + diff --git a/catalog/gallery/ios/Runner/Runner-Bridging-Header.h b/catalog/gallery/ios/Runner/Runner-Bridging-Header.h new file mode 100644 index 00000000..308a2a56 --- /dev/null +++ b/catalog/gallery/ios/Runner/Runner-Bridging-Header.h @@ -0,0 +1 @@ +#import "GeneratedPluginRegistrant.h" diff --git a/catalog/gallery/ios/RunnerTests/RunnerTests.swift b/catalog/gallery/ios/RunnerTests/RunnerTests.swift new file mode 100644 index 00000000..86a7c3b1 --- /dev/null +++ b/catalog/gallery/ios/RunnerTests/RunnerTests.swift @@ -0,0 +1,12 @@ +import Flutter +import UIKit +import XCTest + +class RunnerTests: XCTestCase { + + func testExample() { + // If you add code to the Runner application, consider adding tests here. + // See https://developer.apple.com/documentation/xctest for more information about using XCTest. + } + +} diff --git a/catalog/gallery/lib/catalog/catalog_app_button_screen.dart b/catalog/gallery/lib/catalog/catalog_app_button_screen.dart new file mode 100644 index 00000000..f9b21716 --- /dev/null +++ b/catalog/gallery/lib/catalog/catalog_app_button_screen.dart @@ -0,0 +1,14 @@ +import 'package:auto_route/auto_route.dart'; +import 'package:flutter/material.dart'; +import 'package:gallery/catalog/catalog_scaffold_screen.dart'; + +@RoutePage() +class CatalogAppButtonScreen extends StatelessWidget { + const CatalogAppButtonScreen({super.key}); + + @override + Widget build(BuildContext context) => CatalogScaffold( + title: 'Buttons', + child: Container(), + ); +} diff --git a/catalog/gallery/lib/catalog/catalog_scaffold_screen.dart b/catalog/gallery/lib/catalog/catalog_scaffold_screen.dart new file mode 100644 index 00000000..2951389a --- /dev/null +++ b/catalog/gallery/lib/catalog/catalog_scaffold_screen.dart @@ -0,0 +1,40 @@ +import 'package:auto_route/auto_route.dart'; +import 'package:flutter/material.dart'; +import 'package:catalog/catalog.dart'; + +class CatalogScaffold extends StatelessWidget { + final Widget child; + final String title; + final bool? showBack; + + const CatalogScaffold({ + required this.child, + required this.title, + this.showBack = true, + super.key, + }); + + @override + Widget build(BuildContext context) => Scaffold( + appBar: AppBar( + backgroundColor: context.theme.colors.background, + leading: showBack ?? true + ? IconButton( + icon: Icon( + Icons.arrow_back, + color: context.theme.colors.primary, + ), + onPressed: () => context.router.pop(), + ) + : null, + title: Text( + title, + style: TextStyle(color: context.theme.colors.primary), + ), + ), + backgroundColor: context.theme.colors.background, + body: SafeArea( + child: child, + ), + ); +} diff --git a/catalog/gallery/lib/catalog/catalog_text_fields_screen.dart b/catalog/gallery/lib/catalog/catalog_text_fields_screen.dart new file mode 100644 index 00000000..92e9c502 --- /dev/null +++ b/catalog/gallery/lib/catalog/catalog_text_fields_screen.dart @@ -0,0 +1,15 @@ +//ignore_for_file: unused-files, unused-code +import 'package:auto_route/auto_route.dart'; +import 'package:flutter/material.dart'; +import 'package:gallery/catalog/catalog_scaffold_screen.dart'; + +@RoutePage() +class CatalogTextFieldsScreen extends StatelessWidget { + const CatalogTextFieldsScreen({super.key}); + + @override + Widget build(BuildContext context) => CatalogScaffold( + title: 'TextFields', + child: Container(), + ); +} diff --git a/catalog/gallery/lib/main.dart b/catalog/gallery/lib/main.dart new file mode 100644 index 00000000..758071e7 --- /dev/null +++ b/catalog/gallery/lib/main.dart @@ -0,0 +1,35 @@ +import 'package:catalog/catalog.dart'; +import 'package:flutter/material.dart'; +import 'package:flutter_screenutil/flutter_screenutil.dart'; +import 'package:gallery/router/catalog_router.dart'; + +void main() { + runApp(MyApp(CatalogRouter())); +} + +class MyApp extends StatelessWidget { + final CatalogRouter _router; + + const MyApp(this._router, {super.key}); + + @override + Widget build(BuildContext context) => ScreenUtilInit( + designSize: const Size(375, 812), + minTextAdapt: false, + splitScreenMode: true, + builder: (_, __) => _CatalogAppContentScreen(_router), + ); +} + +class _CatalogAppContentScreen extends StatelessWidget { + final CatalogRouter _router; + + const _CatalogAppContentScreen(this._router, {super.key}); + + @override + Widget build(BuildContext context) => MaterialApp.router( + theme: AppTheme.provideAppTheme(context), + routerConfig: _router.config(), + builder: (context, child) => child!, + ); +} diff --git a/catalog/gallery/lib/main/catalog_main_screen.dart b/catalog/gallery/lib/main/catalog_main_screen.dart new file mode 100644 index 00000000..e29b5023 --- /dev/null +++ b/catalog/gallery/lib/main/catalog_main_screen.dart @@ -0,0 +1,59 @@ +import 'package:auto_route/auto_route.dart'; +import 'package:flutter/material.dart'; +import 'package:gallery/catalog/catalog_scaffold_screen.dart'; +import 'package:gallery/router/catalog_router.dart'; + +@RoutePage() +class CatalogMainScreen extends StatelessWidget { + const CatalogMainScreen({super.key}); + + @override + Widget build(BuildContext context) => CatalogScaffold( + title: 'Widget Catalog', + showBack: false, + child: ListView.separated( + shrinkWrap: true, + separatorBuilder: (BuildContext context, int index) => + const Divider(), + itemCount: _CatalogScreen.values.length, + itemBuilder: (BuildContext context, int index) { + final element = _CatalogScreen.values[index]; + return Row( + children: [ + Expanded( + child: TextButton( + child: Text(element.title), + onPressed: () => context.router.push(element.route), + ), + ), + ], + ); + }, + ), + ); +} + +enum _CatalogScreen { + buttons, + textFields, +} + +extension _CatalogScreenExtensions on _CatalogScreen { + String get title { + switch (this) { + case _CatalogScreen.buttons: + return 'Buttons'; + case _CatalogScreen.textFields: + return 'Text Fields'; + } + } + + PageRouteInfo get route { + switch (this) { + case _CatalogScreen.buttons: + return const CatalogAppButtonRoute(); + case _CatalogScreen.textFields: + return const CatalogTextFieldsRoute(); + } + } +} diff --git a/catalog/gallery/lib/router/catalog_router.dart b/catalog/gallery/lib/router/catalog_router.dart new file mode 100644 index 00000000..ef33c13d --- /dev/null +++ b/catalog/gallery/lib/router/catalog_router.dart @@ -0,0 +1,21 @@ +import 'package:auto_route/auto_route.dart'; +import 'package:gallery/catalog/catalog_app_button_screen.dart'; +import 'package:gallery/catalog/catalog_text_fields_screen.dart'; +import 'package:gallery/main/catalog_main_screen.dart'; + +part 'catalog_router.gr.dart'; + +@AutoRouterConfig( + replaceInRouteName: 'Page|Screen|Router,Route', +) +class CatalogRouter extends _$CatalogRouter { + @override + final List routes; + + CatalogRouter() + : routes = [ + AutoRoute(page: CatalogAppButtonRoute.page), + AutoRoute(initial: true, page: CatalogMainRoute.page), + AutoRoute(page: CatalogTextFieldsRoute.page), + ]; +} diff --git a/catalog/gallery/lib/router/catalog_router.gr.dart b/catalog/gallery/lib/router/catalog_router.gr.dart new file mode 100644 index 00000000..bfa2bb60 --- /dev/null +++ b/catalog/gallery/lib/router/catalog_router.gr.dart @@ -0,0 +1,79 @@ +// GENERATED CODE - DO NOT MODIFY BY HAND + +// ************************************************************************** +// AutoRouterGenerator +// ************************************************************************** + +// ignore_for_file: type=lint +// coverage:ignore-file + +part of 'catalog_router.dart'; + +abstract class _$CatalogRouter extends RootStackRouter { + // ignore: unused_element + _$CatalogRouter({super.navigatorKey}); + + @override + final Map pagesMap = { + CatalogAppButtonRoute.name: (routeData) { + return AutoRoutePage( + routeData: routeData, + child: const CatalogAppButtonScreen(), + ); + }, + CatalogMainRoute.name: (routeData) { + return AutoRoutePage( + routeData: routeData, + child: const CatalogMainScreen(), + ); + }, + CatalogTextFieldsRoute.name: (routeData) { + return AutoRoutePage( + routeData: routeData, + child: const CatalogTextFieldsScreen(), + ); + }, + }; +} + +/// generated route for +/// [CatalogAppButtonScreen] +class CatalogAppButtonRoute extends PageRouteInfo { + const CatalogAppButtonRoute({List? children}) + : super( + CatalogAppButtonRoute.name, + initialChildren: children, + ); + + static const String name = 'CatalogAppButtonRoute'; + + static const PageInfo page = PageInfo(name); +} + +/// generated route for +/// [CatalogMainScreen] +class CatalogMainRoute extends PageRouteInfo { + const CatalogMainRoute({List? children}) + : super( + CatalogMainRoute.name, + initialChildren: children, + ); + + static const String name = 'CatalogMainRoute'; + + static const PageInfo page = PageInfo(name); +} + +/// generated route for +/// [CatalogTextFieldsScreen] +class CatalogTextFieldsRoute extends PageRouteInfo { + const CatalogTextFieldsRoute({List? children}) + : super( + CatalogTextFieldsRoute.name, + initialChildren: children, + ); + + static const String name = 'CatalogTextFieldsRoute'; + + static const PageInfo page = PageInfo(name); +} diff --git a/catalog/gallery/pubspec.lock b/catalog/gallery/pubspec.lock new file mode 100644 index 00000000..159ea37e --- /dev/null +++ b/catalog/gallery/pubspec.lock @@ -0,0 +1,801 @@ +# Generated by pub +# See https://dart.dev/tools/pub/glossary#lockfile +packages: + _fe_analyzer_shared: + dependency: transitive + description: + name: _fe_analyzer_shared + sha256: ae92f5d747aee634b87f89d9946000c2de774be1d6ac3e58268224348cd0101a + url: "https://pub.dev" + source: hosted + version: "61.0.0" + analyzer: + dependency: transitive + description: + name: analyzer + sha256: ea3d8652bda62982addfd92fdc2d0214e5f82e43325104990d4f4c4a2a313562 + url: "https://pub.dev" + source: hosted + version: "5.13.0" + archive: + dependency: transitive + description: + name: archive + sha256: "7b875fd4a20b165a3084bd2d210439b22ebc653f21cea4842729c0c30c82596b" + url: "https://pub.dev" + source: hosted + version: "3.4.9" + args: + dependency: transitive + description: + name: args + sha256: eef6c46b622e0494a36c5a12d10d77fb4e855501a91c1b9ef9339326e58f0596 + url: "https://pub.dev" + source: hosted + version: "2.4.2" + async: + dependency: transitive + description: + name: async + sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c" + url: "https://pub.dev" + source: hosted + version: "2.11.0" + auto_route: + dependency: "direct main" + description: + name: auto_route + sha256: "72f21e8b6cbbe25f02ea69183e024996530bf495cc1b077a49e0ec6726f0c271" + url: "https://pub.dev" + source: hosted + version: "7.8.3" + auto_route_generator: + dependency: "direct dev" + description: + name: auto_route_generator + sha256: e7aa9ab44b77cd31a4619d94db645ab5736e543fd0b4c6058c281249e479dfb8 + url: "https://pub.dev" + source: hosted + version: "7.3.1" + boolean_selector: + dependency: transitive + description: + name: boolean_selector + sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + build: + dependency: transitive + description: + name: build + sha256: "80184af8b6cb3e5c1c4ec6d8544d27711700bc3e6d2efad04238c7b5290889f0" + url: "https://pub.dev" + source: hosted + version: "2.4.1" + build_config: + dependency: transitive + description: + name: build_config + sha256: bf80fcfb46a29945b423bd9aad884590fb1dc69b330a4d4700cac476af1708d1 + url: "https://pub.dev" + source: hosted + version: "1.1.1" + build_daemon: + dependency: transitive + description: + name: build_daemon + sha256: "5f02d73eb2ba16483e693f80bee4f088563a820e47d1027d4cdfe62b5bb43e65" + url: "https://pub.dev" + source: hosted + version: "4.0.0" + build_resolvers: + dependency: transitive + description: + name: build_resolvers + sha256: "64e12b0521812d1684b1917bc80945625391cb9bdd4312536b1d69dcb6133ed8" + url: "https://pub.dev" + source: hosted + version: "2.4.1" + build_runner: + dependency: "direct dev" + description: + name: build_runner + sha256: "10c6bcdbf9d049a0b666702cf1cee4ddfdc38f02a19d35ae392863b47519848b" + url: "https://pub.dev" + source: hosted + version: "2.4.6" + build_runner_core: + dependency: transitive + description: + name: build_runner_core + sha256: c9e32d21dd6626b5c163d48b037ce906bbe428bc23ab77bcd77bb21e593b6185 + url: "https://pub.dev" + source: hosted + version: "7.2.11" + built_collection: + dependency: transitive + description: + name: built_collection + sha256: "376e3dd27b51ea877c28d525560790aee2e6fbb5f20e2f85d5081027d94e2100" + url: "https://pub.dev" + source: hosted + version: "5.1.1" + built_value: + dependency: transitive + description: + name: built_value + sha256: "723b4021e903217dfc445ec4cf5b42e27975aece1fc4ebbc1ca6329c2d9fb54e" + url: "https://pub.dev" + source: hosted + version: "8.7.0" + catalog: + dependency: "direct main" + description: + path: ".." + relative: true + source: path + version: "0.0.1" + characters: + dependency: transitive + description: + name: characters + sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605" + url: "https://pub.dev" + source: hosted + version: "1.3.0" + checked_yaml: + dependency: transitive + description: + name: checked_yaml + sha256: feb6bed21949061731a7a75fc5d2aa727cf160b91af9a3e464c5e3a32e28b5ff + url: "https://pub.dev" + source: hosted + version: "2.0.3" + cli_util: + dependency: transitive + description: + name: cli_util + sha256: b8db3080e59b2503ca9e7922c3df2072cf13992354d5e944074ffa836fba43b7 + url: "https://pub.dev" + source: hosted + version: "0.4.0" + clock: + dependency: transitive + description: + name: clock + sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf + url: "https://pub.dev" + source: hosted + version: "1.1.1" + code_builder: + dependency: transitive + description: + name: code_builder + sha256: "1be9be30396d7e4c0db42c35ea6ccd7cc6a1e19916b5dc64d6ac216b5544d677" + url: "https://pub.dev" + source: hosted + version: "4.7.0" + collection: + dependency: transitive + description: + name: collection + sha256: f092b211a4319e98e5ff58223576de6c2803db36221657b46c82574721240687 + url: "https://pub.dev" + source: hosted + version: "1.17.2" + color: + dependency: transitive + description: + name: color + sha256: ddcdf1b3badd7008233f5acffaf20ca9f5dc2cd0172b75f68f24526a5f5725cb + url: "https://pub.dev" + source: hosted + version: "3.0.0" + convert: + dependency: transitive + description: + name: convert + sha256: "0f08b14755d163f6e2134cb58222dd25ea2a2ee8a195e53983d57c075324d592" + url: "https://pub.dev" + source: hosted + version: "3.1.1" + crypto: + dependency: transitive + description: + name: crypto + sha256: ff625774173754681d66daaf4a448684fb04b78f902da9cb3d308c19cc5e8bab + url: "https://pub.dev" + source: hosted + version: "3.0.3" + csslib: + dependency: transitive + description: + name: csslib + sha256: "706b5707578e0c1b4b7550f64078f0a0f19dec3f50a178ffae7006b0a9ca58fb" + url: "https://pub.dev" + source: hosted + version: "1.0.0" + dart_style: + dependency: transitive + description: + name: dart_style + sha256: "1efa911ca7086affd35f463ca2fc1799584fb6aa89883cf0af8e3664d6a02d55" + url: "https://pub.dev" + source: hosted + version: "2.3.2" + dartx: + dependency: transitive + description: + name: dartx + sha256: "8b25435617027257d43e6508b5fe061012880ddfdaa75a71d607c3de2a13d244" + url: "https://pub.dev" + source: hosted + version: "1.2.0" + fake_async: + dependency: transitive + description: + name: fake_async + sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78" + url: "https://pub.dev" + source: hosted + version: "1.3.1" + ffi: + dependency: transitive + description: + name: ffi + sha256: "7bf0adc28a23d395f19f3f1eb21dd7cfd1dd9f8e1c50051c069122e6853bc878" + url: "https://pub.dev" + source: hosted + version: "2.1.0" + file: + dependency: transitive + description: + name: file + sha256: "5fc22d7c25582e38ad9a8515372cd9a93834027aacf1801cf01164dac0ffa08c" + url: "https://pub.dev" + source: hosted + version: "7.0.0" + fixnum: + dependency: transitive + description: + name: fixnum + sha256: "25517a4deb0c03aa0f32fd12db525856438902d9c16536311e76cdc57b31d7d1" + url: "https://pub.dev" + source: hosted + version: "1.1.0" + flutter: + dependency: "direct main" + description: flutter + source: sdk + version: "0.0.0" + flutter_flavorizr: + dependency: "direct dev" + description: + name: flutter_flavorizr + sha256: "54c799a467d2d5102d3e2ec9c999377ca11e30590b8d0ddd929ee9e69e26c0a0" + url: "https://pub.dev" + source: hosted + version: "2.2.1" + flutter_gen_core: + dependency: transitive + description: + name: flutter_gen_core + sha256: e8637dd6a59860f89e5e71be0a27101ec32dad1a0ed7fd879fd23b6e91d5004d + url: "https://pub.dev" + source: hosted + version: "5.3.1" + flutter_gen_runner: + dependency: "direct dev" + description: + name: flutter_gen_runner + sha256: "7de1bf4fc0439be0fef3178b6423d5c7f1f9f3a38a7c6fafe75d7f70ff4856d7" + url: "https://pub.dev" + source: hosted + version: "5.3.1" + flutter_launcher_icons: + dependency: "direct dev" + description: + name: flutter_launcher_icons + sha256: "526faf84284b86a4cb36d20a5e45147747b7563d921373d4ee0559c54fcdbcea" + url: "https://pub.dev" + source: hosted + version: "0.13.1" + flutter_lints: + dependency: "direct dev" + description: + name: flutter_lints + sha256: e2a421b7e59244faef694ba7b30562e489c2b489866e505074eb005cd7060db7 + url: "https://pub.dev" + source: hosted + version: "3.0.1" + flutter_native_splash: + dependency: "direct main" + description: + name: flutter_native_splash + sha256: ecff62b3b893f2f665de7e4ad3de89f738941fcfcaaba8ee601e749efafa4698 + url: "https://pub.dev" + source: hosted + version: "2.3.2" + flutter_screenutil: + dependency: "direct main" + description: + name: flutter_screenutil + sha256: "8cf100b8e4973dc570b6415a2090b0bfaa8756ad333db46939efc3e774ee100d" + url: "https://pub.dev" + source: hosted + version: "5.9.0" + flutter_test: + dependency: "direct dev" + description: flutter + source: sdk + version: "0.0.0" + flutter_web_plugins: + dependency: transitive + description: flutter + source: sdk + version: "0.0.0" + frontend_server_client: + dependency: transitive + description: + name: frontend_server_client + sha256: "408e3ca148b31c20282ad6f37ebfa6f4bdc8fede5b74bc2f08d9d92b55db3612" + url: "https://pub.dev" + source: hosted + version: "3.2.0" + glob: + dependency: transitive + description: + name: glob + sha256: "0e7014b3b7d4dac1ca4d6114f82bf1782ee86745b9b42a92c9289c23d8a0ab63" + url: "https://pub.dev" + source: hosted + version: "2.1.2" + google_fonts: + dependency: "direct main" + description: + name: google_fonts + sha256: e20ff62b158b96f392bfc8afe29dee1503c94fbea2cbe8186fd59b756b8ae982 + url: "https://pub.dev" + source: hosted + version: "5.1.0" + graphs: + dependency: transitive + description: + name: graphs + sha256: aedc5a15e78fc65a6e23bcd927f24c64dd995062bcd1ca6eda65a3cff92a4d19 + url: "https://pub.dev" + source: hosted + version: "2.3.1" + html: + dependency: transitive + description: + name: html + sha256: "3a7812d5bcd2894edf53dfaf8cd640876cf6cef50a8f238745c8b8120ea74d3a" + url: "https://pub.dev" + source: hosted + version: "0.15.4" + http: + dependency: transitive + description: + name: http + sha256: "759d1a329847dd0f39226c688d3e06a6b8679668e350e2891a6474f8b4bb8525" + url: "https://pub.dev" + source: hosted + version: "1.1.0" + http_multi_server: + dependency: transitive + description: + name: http_multi_server + sha256: "97486f20f9c2f7be8f514851703d0119c3596d14ea63227af6f7a481ef2b2f8b" + url: "https://pub.dev" + source: hosted + version: "3.2.1" + http_parser: + dependency: transitive + description: + name: http_parser + sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b" + url: "https://pub.dev" + source: hosted + version: "4.0.2" + image: + dependency: transitive + description: + name: image + sha256: "028f61960d56f26414eb616b48b04eb37d700cbe477b7fb09bf1d7ce57fd9271" + url: "https://pub.dev" + source: hosted + version: "4.1.3" + io: + dependency: transitive + description: + name: io + sha256: "2ec25704aba361659e10e3e5f5d672068d332fc8ac516421d483a11e5cbd061e" + url: "https://pub.dev" + source: hosted + version: "1.0.4" + js: + dependency: transitive + description: + name: js + sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3 + url: "https://pub.dev" + source: hosted + version: "0.6.7" + json_annotation: + dependency: transitive + description: + name: json_annotation + sha256: b10a7b2ff83d83c777edba3c6a0f97045ddadd56c944e1a23a3fdf43a1bf4467 + url: "https://pub.dev" + source: hosted + version: "4.8.1" + lints: + dependency: "direct dev" + description: + name: lints + sha256: cbf8d4b858bb0134ef3ef87841abdf8d63bfc255c266b7bf6b39daa1085c4290 + url: "https://pub.dev" + source: hosted + version: "3.0.0" + logging: + dependency: transitive + description: + name: logging + sha256: "623a88c9594aa774443aa3eb2d41807a48486b5613e67599fb4c41c0ad47c340" + url: "https://pub.dev" + source: hosted + version: "1.2.0" + matcher: + dependency: transitive + description: + name: matcher + sha256: "1803e76e6653768d64ed8ff2e1e67bea3ad4b923eb5c56a295c3e634bad5960e" + url: "https://pub.dev" + source: hosted + version: "0.12.16" + material_color_generator: + dependency: "direct main" + description: + name: material_color_generator + sha256: fa0ffc12d7cf6f13c41e35ac7f4265a49ec2f201b41b268fd8061da3bcc41131 + url: "https://pub.dev" + source: hosted + version: "1.1.0" + material_color_utilities: + dependency: transitive + description: + name: material_color_utilities + sha256: "9528f2f296073ff54cb9fee677df673ace1218163c3bc7628093e7eed5203d41" + url: "https://pub.dev" + source: hosted + version: "0.5.0" + meta: + dependency: transitive + description: + name: meta + sha256: "3c74dbf8763d36539f114c799d8a2d87343b5067e9d796ca22b5eb8437090ee3" + url: "https://pub.dev" + source: hosted + version: "1.9.1" + mime: + dependency: transitive + description: + name: mime + sha256: e4ff8e8564c03f255408decd16e7899da1733852a9110a58fe6d1b817684a63e + url: "https://pub.dev" + source: hosted + version: "1.0.4" + package_config: + dependency: transitive + description: + name: package_config + sha256: "1c5b77ccc91e4823a5af61ee74e6b972db1ef98c2ff5a18d3161c982a55448bd" + url: "https://pub.dev" + source: hosted + version: "2.1.0" + path: + dependency: transitive + description: + name: path + sha256: "8829d8a55c13fc0e37127c29fedf290c102f4e40ae94ada574091fe0ff96c917" + url: "https://pub.dev" + source: hosted + version: "1.8.3" + path_provider: + dependency: transitive + description: + name: path_provider + sha256: a1aa8aaa2542a6bc57e381f132af822420216c80d4781f7aa085ca3229208aaa + url: "https://pub.dev" + source: hosted + version: "2.1.1" + path_provider_android: + dependency: transitive + description: + name: path_provider_android + sha256: e595b98692943b4881b219f0a9e3945118d3c16bd7e2813f98ec6e532d905f72 + url: "https://pub.dev" + source: hosted + version: "2.2.1" + path_provider_foundation: + dependency: transitive + description: + name: path_provider_foundation + sha256: "19314d595120f82aca0ba62787d58dde2cc6b5df7d2f0daf72489e38d1b57f2d" + url: "https://pub.dev" + source: hosted + version: "2.3.1" + path_provider_linux: + dependency: transitive + description: + name: path_provider_linux + sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279 + url: "https://pub.dev" + source: hosted + version: "2.2.1" + path_provider_platform_interface: + dependency: transitive + description: + name: path_provider_platform_interface + sha256: "94b1e0dd80970c1ce43d5d4e050a9918fce4f4a775e6142424c30a29a363265c" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + path_provider_windows: + dependency: transitive + description: + name: path_provider_windows + sha256: "8bc9f22eee8690981c22aa7fc602f5c85b497a6fb2ceb35ee5a5e5ed85ad8170" + url: "https://pub.dev" + source: hosted + version: "2.2.1" + petitparser: + dependency: transitive + description: + name: petitparser + sha256: cb3798bef7fc021ac45b308f4b51208a152792445cce0448c9a4ba5879dd8750 + url: "https://pub.dev" + source: hosted + version: "5.4.0" + platform: + dependency: transitive + description: + name: platform + sha256: "0a279f0707af40c890e80b1e9df8bb761694c074ba7e1d4ab1bc4b728e200b59" + url: "https://pub.dev" + source: hosted + version: "3.1.3" + plugin_platform_interface: + dependency: transitive + description: + name: plugin_platform_interface + sha256: da3fdfeccc4d4ff2da8f8c556704c08f912542c5fb3cf2233ed75372384a034d + url: "https://pub.dev" + source: hosted + version: "2.1.6" + pointycastle: + dependency: transitive + description: + name: pointycastle + sha256: "7c1e5f0d23c9016c5bbd8b1473d0d3fb3fc851b876046039509e18e0c7485f2c" + url: "https://pub.dev" + source: hosted + version: "3.7.3" + pool: + dependency: transitive + description: + name: pool + sha256: "20fe868b6314b322ea036ba325e6fc0711a22948856475e2c2b6306e8ab39c2a" + url: "https://pub.dev" + source: hosted + version: "1.5.1" + pub_semver: + dependency: transitive + description: + name: pub_semver + sha256: "40d3ab1bbd474c4c2328c91e3a7df8c6dd629b79ece4c4bd04bee496a224fb0c" + url: "https://pub.dev" + source: hosted + version: "2.1.4" + pubspec_parse: + dependency: transitive + description: + name: pubspec_parse + sha256: c63b2876e58e194e4b0828fcb080ad0e06d051cb607a6be51a9e084f47cb9367 + url: "https://pub.dev" + source: hosted + version: "1.2.3" + shelf: + dependency: transitive + description: + name: shelf + sha256: ad29c505aee705f41a4d8963641f91ac4cee3c8fad5947e033390a7bd8180fa4 + url: "https://pub.dev" + source: hosted + version: "1.4.1" + shelf_web_socket: + dependency: transitive + description: + name: shelf_web_socket + sha256: "9ca081be41c60190ebcb4766b2486a7d50261db7bd0f5d9615f2d653637a84c1" + url: "https://pub.dev" + source: hosted + version: "1.0.4" + sky_engine: + dependency: transitive + description: flutter + source: sdk + version: "0.0.99" + source_gen: + dependency: transitive + description: + name: source_gen + sha256: fc0da689e5302edb6177fdd964efcb7f58912f43c28c2047a808f5bfff643d16 + url: "https://pub.dev" + source: hosted + version: "1.4.0" + source_span: + dependency: transitive + description: + name: source_span + sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c" + url: "https://pub.dev" + source: hosted + version: "1.10.0" + sprintf: + dependency: transitive + description: + name: sprintf + sha256: "1fc9ffe69d4df602376b52949af107d8f5703b77cda567c4d7d86a0693120f23" + url: "https://pub.dev" + source: hosted + version: "7.0.0" + stack_trace: + dependency: transitive + description: + name: stack_trace + sha256: c3c7d8edb15bee7f0f74debd4b9c5f3c2ea86766fe4178eb2a18eb30a0bdaed5 + url: "https://pub.dev" + source: hosted + version: "1.11.0" + stream_channel: + dependency: transitive + description: + name: stream_channel + sha256: "83615bee9045c1d322bbbd1ba209b7a749c2cbcdcb3fdd1df8eb488b3279c1c8" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + stream_transform: + dependency: transitive + description: + name: stream_transform + sha256: "14a00e794c7c11aa145a170587321aedce29769c08d7f58b1d141da75e3b1c6f" + url: "https://pub.dev" + source: hosted + version: "2.1.0" + string_scanner: + dependency: transitive + description: + name: string_scanner + sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde" + url: "https://pub.dev" + source: hosted + version: "1.2.0" + term_glyph: + dependency: transitive + description: + name: term_glyph + sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84 + url: "https://pub.dev" + source: hosted + version: "1.2.1" + test_api: + dependency: transitive + description: + name: test_api + sha256: "75760ffd7786fffdfb9597c35c5b27eaeec82be8edfb6d71d32651128ed7aab8" + url: "https://pub.dev" + source: hosted + version: "0.6.0" + time: + dependency: transitive + description: + name: time + sha256: "83427e11d9072e038364a5e4da559e85869b227cf699a541be0da74f14140124" + url: "https://pub.dev" + source: hosted + version: "2.1.3" + timing: + dependency: transitive + description: + name: timing + sha256: "70a3b636575d4163c477e6de42f247a23b315ae20e86442bebe32d3cabf61c32" + url: "https://pub.dev" + source: hosted + version: "1.0.1" + typed_data: + dependency: transitive + description: + name: typed_data + sha256: facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c + url: "https://pub.dev" + source: hosted + version: "1.3.2" + universal_io: + dependency: transitive + description: + name: universal_io + sha256: "1722b2dcc462b4b2f3ee7d188dad008b6eb4c40bbd03a3de451d82c78bba9aad" + url: "https://pub.dev" + source: hosted + version: "2.2.2" + vector_math: + dependency: transitive + description: + name: vector_math + sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" + url: "https://pub.dev" + source: hosted + version: "2.1.4" + watcher: + dependency: transitive + description: + name: watcher + sha256: "3d2ad6751b3c16cf07c7fca317a1413b3f26530319181b37e3b9039b84fc01d8" + url: "https://pub.dev" + source: hosted + version: "1.1.0" + web: + dependency: transitive + description: + name: web + sha256: dc8ccd225a2005c1be616fe02951e2e342092edf968cf0844220383757ef8f10 + url: "https://pub.dev" + source: hosted + version: "0.1.4-beta" + web_socket_channel: + dependency: transitive + description: + name: web_socket_channel + sha256: d88238e5eac9a42bb43ca4e721edba3c08c6354d4a53063afaa568516217621b + url: "https://pub.dev" + source: hosted + version: "2.4.0" + win32: + dependency: transitive + description: + name: win32 + sha256: "350a11abd2d1d97e0cc7a28a81b781c08002aa2864d9e3f192ca0ffa18b06ed3" + url: "https://pub.dev" + source: hosted + version: "5.0.9" + xdg_directories: + dependency: transitive + description: + name: xdg_directories + sha256: "589ada45ba9e39405c198fe34eb0f607cddb2108527e658136120892beac46d2" + url: "https://pub.dev" + source: hosted + version: "1.0.3" + xml: + dependency: transitive + description: + name: xml + sha256: "5bc72e1e45e941d825fd7468b9b4cc3b9327942649aeb6fc5cdbf135f0a86e84" + url: "https://pub.dev" + source: hosted + version: "6.3.0" + yaml: + dependency: transitive + description: + name: yaml + sha256: "75769501ea3489fca56601ff33454fe45507ea3bfb014161abc3b43ae25989d5" + url: "https://pub.dev" + source: hosted + version: "3.1.2" +sdks: + dart: ">=3.1.0-185.0.dev <4.0.0" + flutter: ">=3.13.9" diff --git a/catalog/gallery/pubspec.yaml b/catalog/gallery/pubspec.yaml new file mode 100644 index 00000000..eb567213 --- /dev/null +++ b/catalog/gallery/pubspec.yaml @@ -0,0 +1,57 @@ +name: gallery +description: A new Flutter project. +publish_to: 'none' # Remove this line if you wish to publish to pub.dev +version: 1.0.0+1 + +environment: + sdk: '>=3.0.0 <4.0.0' + flutter: 3.13.9 + +# Dependencies specify other packages that your package needs in order to work. +# To automatically upgrade your package dependencies to the latest versions +# consider running `flutter pub upgrade --major-versions`. Alternatively, +# dependencies can be manually updated by changing the version numbers below to +# the latest version available on pub.dev. To see which dependencies have newer +# versions available, run `flutter pub outdated`. +dependencies: + flutter: + sdk: flutter + catalog: + path: ../ + + auto_route: 7.8.3 + flutter_screenutil: 5.9.0 + flutter_native_splash: 2.3.2 + material_color_generator: 1.1.0 + google_fonts: 5.1.0 + +dev_dependencies: + flutter_test: + sdk: flutter + auto_route_generator: 7.3.1 + flutter_lints: 3.0.1 + flutter_gen_runner: 5.3.1 + flutter_flavorizr: 2.2.1 + flutter_launcher_icons: 0.13.1 + build_runner: 2.4.6 + lints: 3.0.0 + +flutter_launcher_icons: + android: true + ios: true + image_path: 'icons/ic_launcher.png' + image_path_ios: 'icons/ic_launcher_ios.png' # Transparency not supported on IOS + adaptive_icon_foreground: 'icons/ic_launcher_foreground.png' + adaptive_icon_background: '#ee1a64' + remove_alpha_ios: true + web: + generate: false + windows: + generate: false + +flutter_native_splash: + color: '#ffffff' + image: 'icons/splash_logo.png' + android_12: + image: 'icons/splash_logo_android_12.png' + branding: 'icons/splash_branding.png' diff --git a/catalog/gallery/test/widget_test.dart b/catalog/gallery/test/widget_test.dart new file mode 100644 index 00000000..fc60b1df --- /dev/null +++ b/catalog/gallery/test/widget_test.dart @@ -0,0 +1,31 @@ +// This is a basic Flutter widget test. +// +// To perform an interaction with a widget in your test, use the WidgetTester +// utility in the flutter_test package. For example, you can send tap and scroll +// gestures. You can also use WidgetTester to find child widgets in the widget +// tree, read text, and verify that the values of widget properties are correct. + +import 'package:flutter/material.dart'; +import 'package:flutter_test/flutter_test.dart'; + +import 'package:gallery/main.dart'; +import 'package:gallery/router/catalog_router.dart'; + +void main() { + testWidgets('Counter increments smoke test', (WidgetTester tester) async { + // Build our app and trigger a frame. + await tester.pumpWidget(MyApp(CatalogRouter())); + + // Verify that our counter starts at 0. + expect(find.text('0'), findsOneWidget); + expect(find.text('1'), findsNothing); + + // Tap the '+' icon and trigger a frame. + await tester.tap(find.byIcon(Icons.add)); + await tester.pump(); + + // Verify that our counter has incremented. + expect(find.text('0'), findsNothing); + expect(find.text('1'), findsOneWidget); + }); +} diff --git a/catalog/gallery/web/favicon.png b/catalog/gallery/web/favicon.png new file mode 100644 index 00000000..8aaa46ac Binary files /dev/null and b/catalog/gallery/web/favicon.png differ diff --git a/catalog/gallery/web/icons/Icon-192.png b/catalog/gallery/web/icons/Icon-192.png new file mode 100644 index 00000000..b749bfef Binary files /dev/null and b/catalog/gallery/web/icons/Icon-192.png differ diff --git a/catalog/gallery/web/icons/Icon-512.png b/catalog/gallery/web/icons/Icon-512.png new file mode 100644 index 00000000..88cfd48d Binary files /dev/null and b/catalog/gallery/web/icons/Icon-512.png differ diff --git a/catalog/gallery/web/icons/Icon-maskable-192.png b/catalog/gallery/web/icons/Icon-maskable-192.png new file mode 100644 index 00000000..eb9b4d76 Binary files /dev/null and b/catalog/gallery/web/icons/Icon-maskable-192.png differ diff --git a/catalog/gallery/web/icons/Icon-maskable-512.png b/catalog/gallery/web/icons/Icon-maskable-512.png new file mode 100644 index 00000000..d69c5669 Binary files /dev/null and b/catalog/gallery/web/icons/Icon-maskable-512.png differ diff --git a/catalog/gallery/web/index.html b/catalog/gallery/web/index.html new file mode 100644 index 00000000..742d79c4 --- /dev/null +++ b/catalog/gallery/web/index.html @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + gallery + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/catalog/gallery/web/manifest.json b/catalog/gallery/web/manifest.json new file mode 100644 index 00000000..cf706d7d --- /dev/null +++ b/catalog/gallery/web/manifest.json @@ -0,0 +1,35 @@ +{ + "name": "gallery", + "short_name": "gallery", + "start_url": ".", + "display": "standalone", + "background_color": "#0175C2", + "theme_color": "#0175C2", + "description": "A new Flutter project.", + "orientation": "portrait-primary", + "prefer_related_applications": false, + "icons": [ + { + "src": "icons/Icon-192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "icons/Icon-512.png", + "sizes": "512x512", + "type": "image/png" + }, + { + "src": "icons/Icon-maskable-192.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "maskable" + }, + { + "src": "icons/Icon-maskable-512.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "maskable" + } + ] +} diff --git a/catalog/gallery/web/splash/img/dark-1x.png b/catalog/gallery/web/splash/img/dark-1x.png new file mode 100644 index 00000000..2544b5c6 Binary files /dev/null and b/catalog/gallery/web/splash/img/dark-1x.png differ diff --git a/catalog/gallery/web/splash/img/dark-2x.png b/catalog/gallery/web/splash/img/dark-2x.png new file mode 100644 index 00000000..ca38ed17 Binary files /dev/null and b/catalog/gallery/web/splash/img/dark-2x.png differ diff --git a/catalog/gallery/web/splash/img/dark-3x.png b/catalog/gallery/web/splash/img/dark-3x.png new file mode 100644 index 00000000..ee10389d Binary files /dev/null and b/catalog/gallery/web/splash/img/dark-3x.png differ diff --git a/catalog/gallery/web/splash/img/dark-4x.png b/catalog/gallery/web/splash/img/dark-4x.png new file mode 100644 index 00000000..1b6630ed Binary files /dev/null and b/catalog/gallery/web/splash/img/dark-4x.png differ diff --git a/catalog/gallery/web/splash/img/light-1x.png b/catalog/gallery/web/splash/img/light-1x.png new file mode 100644 index 00000000..2544b5c6 Binary files /dev/null and b/catalog/gallery/web/splash/img/light-1x.png differ diff --git a/catalog/gallery/web/splash/img/light-2x.png b/catalog/gallery/web/splash/img/light-2x.png new file mode 100644 index 00000000..ca38ed17 Binary files /dev/null and b/catalog/gallery/web/splash/img/light-2x.png differ diff --git a/catalog/gallery/web/splash/img/light-3x.png b/catalog/gallery/web/splash/img/light-3x.png new file mode 100644 index 00000000..ee10389d Binary files /dev/null and b/catalog/gallery/web/splash/img/light-3x.png differ diff --git a/catalog/gallery/web/splash/img/light-4x.png b/catalog/gallery/web/splash/img/light-4x.png new file mode 100644 index 00000000..1b6630ed Binary files /dev/null and b/catalog/gallery/web/splash/img/light-4x.png differ diff --git a/catalog/lib/catalog.dart b/catalog/lib/catalog.dart new file mode 100644 index 00000000..16fe9d48 --- /dev/null +++ b/catalog/lib/catalog.dart @@ -0,0 +1,7 @@ +library catalog; + +export 'theme/app_colors.dart'; +export 'theme/app_text_styles.dart'; +export 'theme/app_dimensions.dart'; +export 'theme/app_theme.dart'; +export 'extensions/context_extensions.dart'; diff --git a/catalog/lib/extensions/context_extensions.dart b/catalog/lib/extensions/context_extensions.dart new file mode 100644 index 00000000..430d0574 --- /dev/null +++ b/catalog/lib/extensions/context_extensions.dart @@ -0,0 +1,5 @@ +import 'package:flutter/material.dart'; + +extension ContextExtensions on BuildContext { + ThemeData get theme => Theme.of(this); +} diff --git a/lib/ui/theme/app_colors.dart b/catalog/lib/theme/app_colors.dart similarity index 70% rename from lib/ui/theme/app_colors.dart rename to catalog/lib/theme/app_colors.dart index 7a280885..c0859694 100644 --- a/lib/ui/theme/app_colors.dart +++ b/catalog/lib/theme/app_colors.dart @@ -14,29 +14,21 @@ class AppColors extends ColorScheme { final MaterialColor surface; const AppColors({ - required Brightness brightness, + required super.brightness, required this.primary, required this.onPrimary, - required Color secondary, - required Color onSecondary, - required Color error, - required Color onError, - required Color background, - required Color onBackground, + required super.secondary, + required super.onSecondary, + required super.error, + required super.onError, + required super.background, + required super.onBackground, required this.surface, - required Color onSurface, + required super.onSurface, }) : super( - brightness: brightness, primary: primary, onPrimary: onPrimary, - secondary: secondary, - onSecondary: onSecondary, - error: error, - onError: onError, - background: background, - onBackground: onBackground, surface: surface, - onSurface: onSurface, ); static AppColors getColorScheme() => AppColors( diff --git a/lib/ui/theme/dimensions.dart b/catalog/lib/theme/app_dimensions.dart similarity index 100% rename from lib/ui/theme/dimensions.dart rename to catalog/lib/theme/app_dimensions.dart diff --git a/lib/ui/theme/text_styles.dart b/catalog/lib/theme/app_text_styles.dart similarity index 63% rename from lib/ui/theme/text_styles.dart rename to catalog/lib/theme/app_text_styles.dart index c25b4e69..6d1f325b 100644 --- a/lib/ui/theme/text_styles.dart +++ b/catalog/lib/theme/app_text_styles.dart @@ -2,41 +2,30 @@ import 'package:flutter/material.dart'; import 'package:flutter_screenutil/flutter_screenutil.dart'; import 'package:google_fonts/google_fonts.dart'; -class AppStyles extends TextTheme { +class AppTextStyles extends TextTheme { final TextStyle customStyle; - const AppStyles({ + const AppTextStyles({ required this.customStyle, - headlineLarge, - headlineMedium, - headlineSmall, - bodyLarge, - bodyMedium, - bodySmall, - titleLarge, - titleMedium, - titleSmall, - labelLarge, - labelMedium, - labelSmall, - }) : super( - bodyLarge: bodyLarge, - headlineMedium: headlineMedium, - headlineSmall: headlineSmall, - titleLarge: titleLarge, - titleMedium: titleMedium, - titleSmall: titleSmall, - bodyMedium: bodyMedium, - bodySmall: bodySmall, - labelLarge: labelLarge, - labelSmall: labelSmall, - ); + super.headlineLarge, + super.headlineMedium, + super.headlineSmall, + super.bodyLarge, + super.bodyMedium, + super.bodySmall, + super.titleLarge, + super.titleMedium, + super.titleSmall, + super.labelLarge, + super.labelMedium, + super.labelSmall, + }); - factory AppStyles.fromTextTheme({ + factory AppTextStyles.fromTextTheme({ required TextStyle customStyle, required TextTheme textTheme, }) => - AppStyles( + AppTextStyles( customStyle: customStyle, headlineSmall: textTheme.headlineSmall, headlineMedium: textTheme.headlineMedium, @@ -52,7 +41,7 @@ class AppStyles extends TextTheme { labelSmall: textTheme.labelSmall, ); - static AppStyles getAppStyles() => AppStyles.fromTextTheme( + static AppTextStyles getAppStyles() => AppTextStyles.fromTextTheme( customStyle: GoogleFonts.inter( fontSize: 50.sp, fontWeight: FontWeight.w300, diff --git a/lib/ui/theme/app_theme.dart b/catalog/lib/theme/app_theme.dart similarity index 67% rename from lib/ui/theme/app_theme.dart rename to catalog/lib/theme/app_theme.dart index 52921bc3..529ac636 100644 --- a/lib/ui/theme/app_theme.dart +++ b/catalog/lib/theme/app_theme.dart @@ -1,16 +1,17 @@ +import 'package:catalog/theme/app_text_styles.dart'; import 'package:flutter/material.dart'; -import 'package:flutter_template/ui/theme/app_colors.dart'; -import 'package:flutter_template/ui/theme/dimensions.dart'; -import 'package:flutter_template/ui/theme/text_styles.dart'; +import 'package:catalog/theme/app_colors.dart'; +import 'package:catalog/theme/app_dimensions.dart'; +//TODO: add theme extensions late AppColors _colors; late AppDimens _dimensions; -late AppStyles _styles; +late AppTextStyles _styles; class AppTheme { static ThemeData provideAppTheme(BuildContext buildContext) { // It can be changed based on the device - _styles = AppStyles.getAppStyles(); + _styles = AppTextStyles.getAppStyles(); _dimensions = AppDimens.getDimensions(); _colors = AppColors.getColorScheme(); @@ -28,5 +29,5 @@ extension ThemeExtensions on ThemeData { AppColors get colors => _colors; - AppStyles get textStyles => _styles; + AppTextStyles get textStyles => _styles; } diff --git a/catalog/pubspec.yaml b/catalog/pubspec.yaml new file mode 100644 index 00000000..77ba6813 --- /dev/null +++ b/catalog/pubspec.yaml @@ -0,0 +1,25 @@ +name: catalog +description: A new Flutter package project. +version: 0.0.1 +publish_to: 'none' + +environment: + sdk: '>=3.0.0 <4.0.0' + flutter: 3.13.9 + +dependencies: + flutter: + sdk: flutter + auto_route: 7.8.3 + flutter_screenutil: 5.9.0 + material_color_generator: 1.1.0 + google_fonts: 5.1.0 + +dev_dependencies: + flutter_test: + sdk: flutter + flutter_lints: 3.0.1 + auto_route_generator: 7.3.1 + flutter_gen_runner: 5.3.1 + build_runner: 2.4.6 + lints: 3.0.0 diff --git a/catalog/test/catalog_test.dart b/catalog/test/catalog_test.dart new file mode 100644 index 00000000..ab73b3a2 --- /dev/null +++ b/catalog/test/catalog_test.dart @@ -0,0 +1 @@ +void main() {} diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 09c23241..8d8c95ad 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -17,12 +17,16 @@ end private_lane :sh_on_root do |options| command = options[:command] - sh("cd #{root_path} && #{command}") + subdirectory = options[:subdirectory] || '' + full_path = File.join(root_path, subdirectory) + + sh("cd #{full_path} && #{command}") end private_lane :flutter_command do |options| command = options[:command] - sh_on_root(command: "fvm flutter #{command}") + subdirectory = options[:subdirectory] + sh_on_root(subdirectory: subdirectory, command: "fvm flutter #{command}") end private_lane :dart_command do |options| @@ -38,6 +42,8 @@ end desc "**Fetch flutter dependencies**" lane :fetch_dependencies do flutter_command(command: "pub get --suppress-analytics") + # Template does not depends on gallery + flutter_command(command: "pub get --suppress-analytics", subdirectory: "catalog/gallery") end desc "**Generate flutter generated code**" @@ -63,7 +69,9 @@ end desc "**Lint: Analyze code**" lane :lint_analyze do - flutter_command(command: "analyze .") + flutter_command(command: "analyze lib") + flutter_command(command: "analyze catalog/gallery") + flutter_command(command: "analyze catalog") end desc "**Lint: Code metrics**" diff --git a/ios/Podfile.lock b/ios/Podfile.lock index e44a1152..2486f4ab 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -15,7 +15,7 @@ PODS: - shared_preferences_foundation (0.0.1): - Flutter - FlutterMacOS - - sqflite (0.0.2): + - sqflite (0.0.3): - Flutter - FMDB (>= 2.7.5) @@ -54,10 +54,10 @@ SPEC CHECKSUMS: flutter_secure_storage: 23fc622d89d073675f2eaa109381aefbcf5a49be flutter_web_browser: 7bccaafbb0c5b8862afe7bcd158f15557109f61f FMDB: 2ce00b547f966261cd18927a3ddb07cb6f3db82a - path_provider_foundation: c68054786f1b4f3343858c1e1d0caaded73f0be9 - shared_preferences_foundation: 986fc17f3d3251412d18b0265f9c64113a8c2472 - sqflite: 6d358c025f5b867b29ed92fc697fd34924e11904 + path_provider_foundation: 29f094ae23ebbca9d3d0cec13889cd9060c0e943 + shared_preferences_foundation: 5b919d13b803cadd15ed2dc053125c68730e5126 + sqflite: 31f7eba61e3074736dff8807a9b41581e4f7f15a PODFILE CHECKSUM: 4e8f8b2be68aeea4c0d5beb6ff1e79fface1d048 -COCOAPODS: 1.11.3 +COCOAPODS: 1.12.1 diff --git a/ios/Runner.xcodeproj/project.pbxproj b/ios/Runner.xcodeproj/project.pbxproj index 398431c0..9c434509 100644 --- a/ios/Runner.xcodeproj/project.pbxproj +++ b/ios/Runner.xcodeproj/project.pbxproj @@ -191,7 +191,7 @@ 97C146E61CF9000F007C117D /* Project object */ = { isa = PBXProject; attributes = { - LastUpgradeCheck = 1300; + LastUpgradeCheck = 1430; ORGANIZATIONNAME = ""; TargetAttributes = { 97C146ED1CF9000F007C117D = { diff --git a/lib/core/common/logger.dart b/lib/core/common/logger.dart index 24be58c4..e58aa122 100644 --- a/lib/core/common/logger.dart +++ b/lib/core/common/logger.dart @@ -94,8 +94,7 @@ class _CrashReportWrappedPrinter extends LogPrinter { } class _PrintableTrace extends Trace { - _PrintableTrace(Iterable frames, {String? original}) - : super(frames, original: original); + _PrintableTrace(super.frames, {super.original}); // It's equal to VMTrace.toString() Method. // Firebase use it to generate the stacktrace diff --git a/lib/main.dart b/lib/main.dart index 4246d67c..53aa58bd 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -39,7 +39,7 @@ Future _initFirebaseSdks() async { } class MyApp extends StatelessWidget { - const MyApp({Key? key}) : super(key: key); + const MyApp({super.key}); @override Widget build(BuildContext context) => ScreenUtilInit( diff --git a/lib/ui/extensions/context_extensions.dart b/lib/ui/extensions/context_extensions.dart index 89280f73..cd2b33d4 100644 --- a/lib/ui/extensions/context_extensions.dart +++ b/lib/ui/extensions/context_extensions.dart @@ -3,6 +3,4 @@ import 'package:flutter_gen/gen_l10n/app_localizations.dart'; extension ContextExtensions on BuildContext { AppLocalizations get localizations => AppLocalizations.of(this)!; - - ThemeData get theme => Theme.of(this); } diff --git a/lib/ui/main/main_screen.dart b/lib/ui/main/main_screen.dart index ff78954e..34e420c7 100644 --- a/lib/ui/main/main_screen.dart +++ b/lib/ui/main/main_screen.dart @@ -4,10 +4,10 @@ import 'package:flutter_localizations/flutter_localizations.dart'; import 'package:flutter_template/core/di/di_provider.dart'; import 'package:flutter_template/ui/resources.dart'; import 'package:flutter_template/ui/router/app_router.dart'; -import 'package:flutter_template/ui/theme/app_theme.dart'; +import 'package:catalog/catalog.dart'; class MainScreen extends StatelessWidget { - const MainScreen({Key? key}) : super(key: key); + const MainScreen({super.key}); @override Widget build(BuildContext context) { diff --git a/lib/ui/signin/signin_screen.dart b/lib/ui/signin/signin_screen.dart index 723f82aa..3396fc75 100644 --- a/lib/ui/signin/signin_screen.dart +++ b/lib/ui/signin/signin_screen.dart @@ -8,7 +8,7 @@ import 'package:flutter_template/ui/signin/signin_cubit.dart'; @RoutePage() class SignInScreen extends StatelessWidget { - const SignInScreen({Key? key}) : super(key: key); + const SignInScreen({super.key}); @override Widget build(BuildContext context) => BlocProvider( diff --git a/lib/ui/welcome/welcome_screen.dart b/lib/ui/welcome/welcome_screen.dart index 3aaaf28b..bed3281f 100644 --- a/lib/ui/welcome/welcome_screen.dart +++ b/lib/ui/welcome/welcome_screen.dart @@ -1,10 +1,10 @@ import 'package:auto_route/auto_route.dart'; +import 'package:catalog/catalog.dart'; import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:flutter_template/core/model/project.dart'; import 'package:flutter_template/ui/extensions/context_extensions.dart'; import 'package:flutter_template/ui/section/error_handler/global_event_handler_cubit.dart'; -import 'package:flutter_template/ui/theme/app_theme.dart'; import 'package:flutter_template/ui/welcome/welcome_cubit.dart'; import 'package:flutter_web_browser/flutter_web_browser.dart'; @@ -54,8 +54,8 @@ class _WelcomeContentScreen extends StatelessWidget { class _ProjectWidget extends StatelessWidget { const _ProjectWidget({ required this.project, - Key? key, - }) : super(key: key); + super.key, + }); final Project project; diff --git a/pubspec.lock b/pubspec.lock index f8e5391d..46b2d44c 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -153,6 +153,13 @@ packages: url: "https://pub.dev" source: hosted version: "8.6.2" + catalog: + dependency: "direct main" + description: + path: catalog + relative: true + source: path + version: "0.0.1" characters: dependency: transitive description: @@ -410,10 +417,10 @@ packages: dependency: "direct dev" description: name: flutter_lints - sha256: a25a15ebbdfc33ab1cd26c63a6ee519df92338a9c10f122adda92938253bef04 + sha256: e2a421b7e59244faef694ba7b30562e489c2b489866e505074eb005cd7060db7 url: "https://pub.dev" source: hosted - version: "2.0.3" + version: "3.0.1" flutter_localizations: dependency: "direct main" description: flutter @@ -641,10 +648,10 @@ packages: dependency: "direct dev" description: name: lints - sha256: "0a217c6c989d21039f1498c3ed9f3ed71b354e69873f13a8dfc3c9fe76f1b452" + sha256: cbf8d4b858bb0134ef3ef87841abdf8d63bfc255c266b7bf6b39daa1085c4290 url: "https://pub.dev" source: hosted - version: "2.1.1" + version: "3.0.0" lists: dependency: transitive description: @@ -1212,4 +1219,4 @@ packages: version: "3.1.2" sdks: dart: ">=3.1.0-185.0.dev <4.0.0" - flutter: ">=3.13.4" + flutter: ">=3.13.9" diff --git a/pubspec.yaml b/pubspec.yaml index e92e6a3a..a70544c9 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -7,19 +7,15 @@ version: 1.0.0+1 environment: sdk: '>=3.0.0 <4.0.0' - flutter: 3.13.4 + flutter: 3.13.9 -# Dependencies specify other packages that your package needs in order to work. -# To automatically upgrade your package dependencies to the latest versions -# consider running `flutter pub upgrade --major-versions`. Alternatively, -# dependencies can be manually updated by changing the version numbers below to -# the latest version available on pub.dev. To see which dependencies have newer -# versions available, run `flutter pub outdated`. dependencies: flutter: sdk: flutter flutter_localizations: sdk: flutter + catalog: + path: ./catalog auto_route: 7.8.3 cupertino_icons: 1.0.6 @@ -61,10 +57,10 @@ dev_dependencies: flutter_flavorizr: 2.2.1 flutter_gen_runner: 5.3.1 flutter_launcher_icons: 0.13.1 - flutter_lints: 2.0.3 + flutter_lints: 3.0.1 freezed: 2.4.1 json_serializable: 6.7.1 - lints: 2.1.1 + lints: 3.0.0 flutter: generate: true diff --git a/scripts/checks.sh b/scripts/checks.sh index f69a7030..1e1335d0 100755 --- a/scripts/checks.sh +++ b/scripts/checks.sh @@ -23,3 +23,9 @@ echo "$result" [[ $result == *'✔ no issues found!'* ]] || error "Linter error - Dart Code Metrics linter error" fvm flutter pub run dart_code_metrics:metrics check-unused-code lib --fatal-unused || error "Linter error - Dart Code Metrics unused code error" + +echo ':: Run Catalog checks' + +echo ':: Run linter catalog ::' +fvm flutter analyze catalog || error "Linter error - Flutter Analyze error - Catalog gallery" +fvm flutter analyze catalog/gallery || error "Linter error - Flutter Analyze error - Catalog gallery"