diff --git a/.gitignore b/.gitignore index 739cd028403c03f3a8930f433a467ff3ce3b6226..34ea3e62f32ed2634aae7907093a95d6f138c124 100644 --- a/.gitignore +++ b/.gitignore @@ -106,3 +106,53 @@ typings/ !docker/.env !docker/supabase/.env !docker/supabase-traefik/.env + +# Miscellaneous +*.class +*.log +*.pyc +*.swp +.atom/ +.buildlog/ +.history +.svn/ + +# IntelliJ related +examples/flutter*/*.iml +examples/flutter*/*.ipr +examples/flutter*/*.iws +examples/flutter*/.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 +examples/flutter*/**/doc/api/ +examples/flutter*/**/ios/Flutter/.last_build_id +examples/flutter*/.dart_tool/ +examples/flutter*/.flutter-plugins +examples/flutter*/.flutter-plugins-dependencies +examples/flutter*/.packages +examples/flutter*/.pub-cache/ +examples/flutter*/.pub/ +examples/flutter*//build/ + +# Web related +examples/flutter*/lib/generated_plugin_registrant.dart + +# Symbolication related +examples/flutter*/app.*.symbols + +# Obfuscation related +examples/flutter*/app.*.map.json + +# Android Studio will place build artifacts here +examples/flutter*/android/app/debug +examples/flutter*/android/app/profile +examples/flutter*/android/app/release + +examples/flutter*/**/.fvm +examples/flutter*/.vscode +examples/flutter*/build \ No newline at end of file diff --git a/examples/angular-todo-list/src/app/components/auth/auth.component.html b/examples/angular-todo-list/src/app/components/auth/auth.component.html index ee5fde1b2117074ee3738fe071598dab455f850d..9ba4627abd1f0d9e2a3fa10522e57c20a3215fb6 100644 --- a/examples/angular-todo-list/src/app/components/auth/auth.component.html +++ b/examples/angular-todo-list/src/app/components/auth/auth.component.html @@ -102,6 +102,7 @@ + diff --git a/examples/flutter-todo-list/.metadata b/examples/flutter-todo-list/.metadata new file mode 100644 index 0000000000000000000000000000000000000000..be0f63d80321fad5f54a83c844df66d9dacd8580 --- /dev/null +++ b/examples/flutter-todo-list/.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: 4cc385b4b84ac2f816d939a49ea1f328c4e0b48e + channel: stable + +project_type: app diff --git a/examples/flutter-todo-list/README.md b/examples/flutter-todo-list/README.md new file mode 100644 index 0000000000000000000000000000000000000000..f703d9b6b958fb3e61e25aecb8765c3818df02f8 --- /dev/null +++ b/examples/flutter-todo-list/README.md @@ -0,0 +1,16 @@ +# flutter_todo_app + +A new Flutter project. + +## Getting Started + +This project is a starting point for a Flutter application. + +A few resources to get you started if this is your first Flutter project: + +- [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab) +- [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook) + +For help getting started with Flutter, view our +[online documentation](https://flutter.dev/docs), which offers tutorials, +samples, guidance on mobile development, and a full API reference. diff --git a/examples/flutter-todo-list/analysis_options.yaml b/examples/flutter-todo-list/analysis_options.yaml new file mode 100644 index 0000000000000000000000000000000000000000..61b6c4de17c96863d24279f06b85e01b6ebbdb34 --- /dev/null +++ b/examples/flutter-todo-list/analysis_options.yaml @@ -0,0 +1,29 @@ +# 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: + # The lint rules applied to this project can be customized in the + # section below to disable rules from the `package:flutter_lints/flutter.yaml` + # included above or to enable additional rules. A list of all available lints + # and their documentation is published at + # https://dart-lang.github.io/linter/lints/index.html. + # + # Instead of disabling a lint rule for the entire project in the + # section below, it can also be suppressed for a single line of code + # or a specific dart file by using the `// ignore: name_of_lint` and + # `// ignore_for_file: name_of_lint` syntax on the line or in the file + # producing the lint. + rules: + # avoid_print: false # Uncomment to disable the `avoid_print` rule + # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule + +# Additional information about this file can be found at +# https://dart.dev/guides/language/analysis-options diff --git a/examples/flutter-todo-list/android/.gitignore b/examples/flutter-todo-list/android/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..6f568019d3c69d4966bb5a0f759980a1472afc1e --- /dev/null +++ b/examples/flutter-todo-list/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/examples/flutter-todo-list/android/.project b/examples/flutter-todo-list/android/.project new file mode 100644 index 0000000000000000000000000000000000000000..da8088cca9ed7d8202d54d3d292d5a702652ee6e --- /dev/null +++ b/examples/flutter-todo-list/android/.project @@ -0,0 +1,28 @@ + + + android + Project android created by Buildship. + + + + + org.eclipse.buildship.core.gradleprojectbuilder + + + + + + org.eclipse.buildship.core.gradleprojectnature + + + + 1631928450519 + + 30 + + org.eclipse.core.resources.regexFilterMatcher + node_modules|.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__ + + + + diff --git a/examples/flutter-todo-list/android/.settings/org.eclipse.buildship.core.prefs b/examples/flutter-todo-list/android/.settings/org.eclipse.buildship.core.prefs new file mode 100644 index 0000000000000000000000000000000000000000..a1eaa33e60dbd58f176cbb6fd41cff875215a85a --- /dev/null +++ b/examples/flutter-todo-list/android/.settings/org.eclipse.buildship.core.prefs @@ -0,0 +1,13 @@ +arguments= +auto.sync=false +build.scans.enabled=false +connection.gradle.distribution=GRADLE_DISTRIBUTION(WRAPPER) +connection.project.dir= +eclipse.preferences.version=1 +gradle.user.home= +java.home=C\:/Program Files/Eclipse Foundation/jdk-11.0.12.7-hotspot +jvm.arguments= +offline.mode=false +override.workspace.settings=true +show.console.view=true +show.executions.view=true diff --git a/examples/flutter-todo-list/android/app/.classpath b/examples/flutter-todo-list/android/app/.classpath new file mode 100644 index 0000000000000000000000000000000000000000..4a04201ca2839bf43ab901d599c311dafcc5754b --- /dev/null +++ b/examples/flutter-todo-list/android/app/.classpath @@ -0,0 +1,6 @@ + + + + + + diff --git a/examples/flutter-todo-list/android/app/.project b/examples/flutter-todo-list/android/app/.project new file mode 100644 index 0000000000000000000000000000000000000000..c7d6a6fb83b56e7c340e6f7abec2f3fee0f8945a --- /dev/null +++ b/examples/flutter-todo-list/android/app/.project @@ -0,0 +1,34 @@ + + + app + Project app created by Buildship. + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.buildship.core.gradleprojectbuilder + + + + + + org.eclipse.jdt.core.javanature + org.eclipse.buildship.core.gradleprojectnature + + + + 1631928450530 + + 30 + + org.eclipse.core.resources.regexFilterMatcher + node_modules|.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__ + + + + diff --git a/examples/flutter-todo-list/android/app/.settings/org.eclipse.buildship.core.prefs b/examples/flutter-todo-list/android/app/.settings/org.eclipse.buildship.core.prefs new file mode 100644 index 0000000000000000000000000000000000000000..b1886adb46c085de842f1283c1a3c25151bfc988 --- /dev/null +++ b/examples/flutter-todo-list/android/app/.settings/org.eclipse.buildship.core.prefs @@ -0,0 +1,2 @@ +connection.project.dir=.. +eclipse.preferences.version=1 diff --git a/examples/flutter-todo-list/android/app/build.gradle b/examples/flutter-todo-list/android/app/build.gradle new file mode 100644 index 0000000000000000000000000000000000000000..173ef903eb71cd38a1021fc68aeb276409d00bb6 --- /dev/null +++ b/examples/flutter-todo-list/android/app/build.gradle @@ -0,0 +1,68 @@ +def localProperties = new Properties() +def localPropertiesFile = rootProject.file('local.properties') +if (localPropertiesFile.exists()) { + localPropertiesFile.withReader('UTF-8') { reader -> + localProperties.load(reader) + } +} + +def flutterRoot = localProperties.getProperty('flutter.sdk') +if (flutterRoot == null) { + throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") +} + +def flutterVersionCode = localProperties.getProperty('flutter.versionCode') +if (flutterVersionCode == null) { + flutterVersionCode = '1' +} + +def flutterVersionName = localProperties.getProperty('flutter.versionName') +if (flutterVersionName == null) { + flutterVersionName = '1.0' +} + +apply plugin: 'com.android.application' +apply plugin: 'kotlin-android' +apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" + +android { + compileSdkVersion 30 + + 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.flutter_todo_app" + minSdkVersion 16 + targetSdkVersion 30 + 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 { + implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" +} diff --git a/examples/flutter-todo-list/android/app/src/debug/AndroidManifest.xml b/examples/flutter-todo-list/android/app/src/debug/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..2e72057ff3da5bea04c7239ce5ae389f4e42eb14 --- /dev/null +++ b/examples/flutter-todo-list/android/app/src/debug/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + diff --git a/examples/flutter-todo-list/android/app/src/main/AndroidManifest.xml b/examples/flutter-todo-list/android/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..b0230db7b60f6c1b28bc9a77abfc1cde51cdf9b4 --- /dev/null +++ b/examples/flutter-todo-list/android/app/src/main/AndroidManifest.xml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + diff --git a/examples/flutter-todo-list/android/app/src/main/kotlin/com/example/flutter_todo_app/MainActivity.kt b/examples/flutter-todo-list/android/app/src/main/kotlin/com/example/flutter_todo_app/MainActivity.kt new file mode 100644 index 0000000000000000000000000000000000000000..7a5fc3835773c19ea699e7ccf78d5cea63f4c20b --- /dev/null +++ b/examples/flutter-todo-list/android/app/src/main/kotlin/com/example/flutter_todo_app/MainActivity.kt @@ -0,0 +1,6 @@ +package com.example.flutter_todo_app + +import io.flutter.embedding.android.FlutterActivity + +class MainActivity: FlutterActivity() { +} diff --git a/examples/flutter-todo-list/android/app/src/main/res/drawable-v21/launch_background.xml b/examples/flutter-todo-list/android/app/src/main/res/drawable-v21/launch_background.xml new file mode 100644 index 0000000000000000000000000000000000000000..f74085f3f6a2b995f8ad1f9ff7b2c46dc118a9e0 --- /dev/null +++ b/examples/flutter-todo-list/android/app/src/main/res/drawable-v21/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/examples/flutter-todo-list/android/app/src/main/res/drawable/launch_background.xml b/examples/flutter-todo-list/android/app/src/main/res/drawable/launch_background.xml new file mode 100644 index 0000000000000000000000000000000000000000..304732f8842013497e14bd02f67a55f2614fb8f7 --- /dev/null +++ b/examples/flutter-todo-list/android/app/src/main/res/drawable/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/examples/flutter-todo-list/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/examples/flutter-todo-list/android/app/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..db77bb4b7b0906d62b1847e87f15cdcacf6a4f29 Binary files /dev/null and b/examples/flutter-todo-list/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/examples/flutter-todo-list/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/examples/flutter-todo-list/android/app/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..17987b79bb8a35cc66c3c1fd44f5a5526c1b78be Binary files /dev/null and b/examples/flutter-todo-list/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/examples/flutter-todo-list/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/examples/flutter-todo-list/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..09d4391482be68e9e4a07fab769b5de337d16eb1 Binary files /dev/null and b/examples/flutter-todo-list/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/examples/flutter-todo-list/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/examples/flutter-todo-list/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..d5f1c8d34e7a88e3f88bea192c3a370d44689c3c Binary files /dev/null and b/examples/flutter-todo-list/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/examples/flutter-todo-list/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/examples/flutter-todo-list/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..4d6372eebdb28e45604e46eeda8dd24651419bc0 Binary files /dev/null and b/examples/flutter-todo-list/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/examples/flutter-todo-list/android/app/src/main/res/values-night/styles.xml b/examples/flutter-todo-list/android/app/src/main/res/values-night/styles.xml new file mode 100644 index 0000000000000000000000000000000000000000..449a9f930826851b495d039f0c0d57f247536615 --- /dev/null +++ b/examples/flutter-todo-list/android/app/src/main/res/values-night/styles.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/examples/flutter-todo-list/android/app/src/main/res/values/styles.xml b/examples/flutter-todo-list/android/app/src/main/res/values/styles.xml new file mode 100644 index 0000000000000000000000000000000000000000..d74aa35c28261a8e78264252be7f0f6f9406ec35 --- /dev/null +++ b/examples/flutter-todo-list/android/app/src/main/res/values/styles.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/examples/flutter-todo-list/android/app/src/profile/AndroidManifest.xml b/examples/flutter-todo-list/android/app/src/profile/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..2e72057ff3da5bea04c7239ce5ae389f4e42eb14 --- /dev/null +++ b/examples/flutter-todo-list/android/app/src/profile/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + diff --git a/examples/flutter-todo-list/android/build.gradle b/examples/flutter-todo-list/android/build.gradle new file mode 100644 index 0000000000000000000000000000000000000000..ed45c6588509e8c601abb6f6ca21aa1610973b94 --- /dev/null +++ b/examples/flutter-todo-list/android/build.gradle @@ -0,0 +1,29 @@ +buildscript { + ext.kotlin_version = '1.3.50' + repositories { + google() + mavenCentral() + } + + dependencies { + classpath 'com.android.tools.build:gradle:4.1.0' + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + } +} + +allprojects { + repositories { + google() + mavenCentral() + } +} + +rootProject.buildDir = '../build' +subprojects { + project.buildDir = "${rootProject.buildDir}/${project.name}" + project.evaluationDependsOn(':app') +} + +task clean(type: Delete) { + delete rootProject.buildDir +} diff --git a/examples/flutter-todo-list/android/gradle.properties b/examples/flutter-todo-list/android/gradle.properties new file mode 100644 index 0000000000000000000000000000000000000000..94adc3a3f97aa8ae37ba567d080f94f95ee8f9b7 --- /dev/null +++ b/examples/flutter-todo-list/android/gradle.properties @@ -0,0 +1,3 @@ +org.gradle.jvmargs=-Xmx1536M +android.useAndroidX=true +android.enableJetifier=true diff --git a/examples/flutter-todo-list/android/gradle/wrapper/gradle-wrapper.properties b/examples/flutter-todo-list/android/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000000000000000000000000000000000000..bc6a58afdda22a443c752eaae3d60c2480511a9f --- /dev/null +++ b/examples/flutter-todo-list/android/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,6 @@ +#Fri Jun 23 08:50:38 CEST 2017 +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip diff --git a/examples/flutter-todo-list/android/settings.gradle b/examples/flutter-todo-list/android/settings.gradle new file mode 100644 index 0000000000000000000000000000000000000000..44e62bcf06ae649ea809590f8a861059886502e8 --- /dev/null +++ b/examples/flutter-todo-list/android/settings.gradle @@ -0,0 +1,11 @@ +include ':app' + +def localPropertiesFile = new File(rootProject.projectDir, "local.properties") +def properties = new Properties() + +assert localPropertiesFile.exists() +localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) } + +def flutterSdkPath = properties.getProperty("flutter.sdk") +assert flutterSdkPath != null, "flutter.sdk not set in local.properties" +apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle" diff --git a/examples/flutter-todo-list/ios/.gitignore b/examples/flutter-todo-list/ios/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..151026b91bc928ad167b6168bf5aabdb4be8ce90 --- /dev/null +++ b/examples/flutter-todo-list/ios/.gitignore @@ -0,0 +1,33 @@ +*.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/examples/flutter-todo-list/ios/Flutter/AppFrameworkInfo.plist b/examples/flutter-todo-list/ios/Flutter/AppFrameworkInfo.plist new file mode 100644 index 0000000000000000000000000000000000000000..8d4492f977adc7dd7a836405d4916e5c9c014536 --- /dev/null +++ b/examples/flutter-todo-list/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 + 9.0 + + diff --git a/examples/flutter-todo-list/ios/Flutter/Debug.xcconfig b/examples/flutter-todo-list/ios/Flutter/Debug.xcconfig new file mode 100644 index 0000000000000000000000000000000000000000..592ceee85b89bd111b779db6116b130509ab6d4b --- /dev/null +++ b/examples/flutter-todo-list/ios/Flutter/Debug.xcconfig @@ -0,0 +1 @@ +#include "Generated.xcconfig" diff --git a/examples/flutter-todo-list/ios/Flutter/Release.xcconfig b/examples/flutter-todo-list/ios/Flutter/Release.xcconfig new file mode 100644 index 0000000000000000000000000000000000000000..592ceee85b89bd111b779db6116b130509ab6d4b --- /dev/null +++ b/examples/flutter-todo-list/ios/Flutter/Release.xcconfig @@ -0,0 +1 @@ +#include "Generated.xcconfig" diff --git a/examples/flutter-todo-list/ios/Runner.xcodeproj/project.pbxproj b/examples/flutter-todo-list/ios/Runner.xcodeproj/project.pbxproj new file mode 100644 index 0000000000000000000000000000000000000000..5a3d7d33e1dc3eae72603b7f85a4fd8acaade1c1 --- /dev/null +++ b/examples/flutter-todo-list/ios/Runner.xcodeproj/project.pbxproj @@ -0,0 +1,471 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; + 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 */; }; +/* End PBXBuildFile 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 */ + 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 = ""; }; + 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 = ""; }; + 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 = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 97C146EB1CF9000F007C117D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 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 */, + ); + sourceTree = ""; + }; + 97C146EF1CF9000F007C117D /* Products */ = { + isa = PBXGroup; + children = ( + 97C146EE1CF9000F007C117D /* Runner.app */, + ); + 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 = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 97C146ED1CF9000F007C117D /* Runner */ = { + isa = PBXNativeTarget; + buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; + buildPhases = ( + 9740EEB61CF901F6004384FC /* Run Script */, + 97C146EA1CF9000F007C117D /* Sources */, + 97C146EB1CF9000F007C117D /* Frameworks */, + 97C146EC1CF9000F007C117D /* Resources */, + 9705A1C41CF9048500538489 /* Embed Frameworks */, + 3B06AD1E1E4923F5004D2608 /* Thin Binary */, + ); + 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 = { + LastUpgradeCheck = 1020; + ORGANIZATIONNAME = ""; + TargetAttributes = { + 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 */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 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; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Thin Binary"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; + }; + 9740EEB61CF901F6004384FC /* Run Script */ = { + isa = PBXShellScriptBuildPhase; + 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 */ + 97C146EA1CF9000F007C117D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase 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 = 9.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)"; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterTodoApp; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + 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 = 9.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 = 9.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = iphoneos; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + 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)"; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterTodoApp; + 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)"; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterTodoApp; + 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 */ + 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/examples/flutter-todo-list/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/examples/flutter-todo-list/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000000000000000000000000000000000000..919434a6254f0e9651f402737811be6634a03e9c --- /dev/null +++ b/examples/flutter-todo-list/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/examples/flutter-todo-list/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/examples/flutter-todo-list/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000000000000000000000000000000000000..18d981003d68d0546c4804ac2ff47dd97c6e7921 --- /dev/null +++ b/examples/flutter-todo-list/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/examples/flutter-todo-list/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/examples/flutter-todo-list/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 0000000000000000000000000000000000000000..f9b0d7c5ea15f194be85eb6ee8e6721a87ff4644 --- /dev/null +++ b/examples/flutter-todo-list/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + PreviewsEnabled + + + diff --git a/examples/flutter-todo-list/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/examples/flutter-todo-list/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme new file mode 100644 index 0000000000000000000000000000000000000000..a28140cfdb3ff9b7a11a9497b84546d615db2afa --- /dev/null +++ b/examples/flutter-todo-list/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/examples/flutter-todo-list/ios/Runner.xcworkspace/contents.xcworkspacedata b/examples/flutter-todo-list/ios/Runner.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000000000000000000000000000000000000..1d526a16ed0f1cd0c2409d848bf489b93fefa3b2 --- /dev/null +++ b/examples/flutter-todo-list/ios/Runner.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/examples/flutter-todo-list/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/examples/flutter-todo-list/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000000000000000000000000000000000000..18d981003d68d0546c4804ac2ff47dd97c6e7921 --- /dev/null +++ b/examples/flutter-todo-list/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/examples/flutter-todo-list/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/examples/flutter-todo-list/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 0000000000000000000000000000000000000000..f9b0d7c5ea15f194be85eb6ee8e6721a87ff4644 --- /dev/null +++ b/examples/flutter-todo-list/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + PreviewsEnabled + + + diff --git a/examples/flutter-todo-list/ios/Runner/AppDelegate.swift b/examples/flutter-todo-list/ios/Runner/AppDelegate.swift new file mode 100644 index 0000000000000000000000000000000000000000..70693e4a8c128fc4350b157416374ca599ac8c7b --- /dev/null +++ b/examples/flutter-todo-list/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/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000000000000000000000000000000000000..d36b1fab2d9dea668a4f83df94d525897d9e68dd --- /dev/null +++ b/examples/flutter-todo-list/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/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png new file mode 100644 index 0000000000000000000000000000000000000000..dc9ada4725e9b0ddb1deab583e5b5102493aa332 Binary files /dev/null and b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png differ diff --git a/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png new file mode 100644 index 0000000000000000000000000000000000000000..28c6bf03016f6c994b70f38d1b7346e5831b531f Binary files /dev/null and b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png differ diff --git a/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..2ccbfd967d9697cd4b83225558af2911e9571c9b Binary files /dev/null and b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png differ diff --git a/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..f091b6b0bca859a3f474b03065bef75ba58a9e4c Binary files /dev/null and b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png differ diff --git a/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png new file mode 100644 index 0000000000000000000000000000000000000000..4cde12118dda48d71e01fcb589a74d069c5d7cb5 Binary files /dev/null and b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png differ diff --git a/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..d0ef06e7edb86cdfe0d15b4b0d98334a86163658 Binary files /dev/null and b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png differ diff --git a/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..dcdc2306c28505ebc0b6c3a359c4d252bf626b9f Binary files /dev/null and b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png differ diff --git a/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png new file mode 100644 index 0000000000000000000000000000000000000000..2ccbfd967d9697cd4b83225558af2911e9571c9b Binary files /dev/null and b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png differ diff --git a/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..c8f9ed8f5cee1c98386d13b17e89f719e83555b2 Binary files /dev/null and b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png differ diff --git a/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..a6d6b8609df07bf62e5100a53a01510388bd2b22 Binary files /dev/null and b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png differ diff --git a/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..a6d6b8609df07bf62e5100a53a01510388bd2b22 Binary files /dev/null and b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png differ diff --git a/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..75b2d164a5a98e212cca15ea7bf2ab5de5108680 Binary files /dev/null and b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png differ diff --git a/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png new file mode 100644 index 0000000000000000000000000000000000000000..c4df70d39da7941ef3f6dcb7f06a192d8dcb308d Binary files /dev/null and b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png differ diff --git a/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..6a84f41e14e27f4b11f16f9ee39279ac98f8d5ac Binary files /dev/null and b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png differ diff --git a/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..d0e1f58536026aebc4f1f70e481f6993c9ff088d Binary files /dev/null and b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png differ diff --git a/examples/flutter-todo-list/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json new file mode 100644 index 0000000000000000000000000000000000000000..0bedcf2fd46788ae3a01a423467513ff59b5c120 --- /dev/null +++ b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "idiom" : "universal", + "filename" : "LaunchImage.png", + "scale" : "1x" + }, + { + "idiom" : "universal", + "filename" : "LaunchImage@2x.png", + "scale" : "2x" + }, + { + "idiom" : "universal", + "filename" : "LaunchImage@3x.png", + "scale" : "3x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/examples/flutter-todo-list/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png new file mode 100644 index 0000000000000000000000000000000000000000..9da19eacad3b03bb08bbddbbf4ac48dd78b3d838 Binary files /dev/null and b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png differ diff --git a/examples/flutter-todo-list/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..9da19eacad3b03bb08bbddbbf4ac48dd78b3d838 Binary files /dev/null and b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png differ diff --git a/examples/flutter-todo-list/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..9da19eacad3b03bb08bbddbbf4ac48dd78b3d838 Binary files /dev/null and b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png differ diff --git a/examples/flutter-todo-list/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/examples/flutter-todo-list/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md new file mode 100644 index 0000000000000000000000000000000000000000..89c2725b70f1882be97f5214fafe22d27a0ec01e --- /dev/null +++ b/examples/flutter-todo-list/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/examples/flutter-todo-list/ios/Runner/Base.lproj/LaunchScreen.storyboard b/examples/flutter-todo-list/ios/Runner/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 0000000000000000000000000000000000000000..f2e259c7c9390ff69a6bbe1e0907e6dc366848e7 --- /dev/null +++ b/examples/flutter-todo-list/ios/Runner/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/examples/flutter-todo-list/ios/Runner/Base.lproj/Main.storyboard b/examples/flutter-todo-list/ios/Runner/Base.lproj/Main.storyboard new file mode 100644 index 0000000000000000000000000000000000000000..f3c28516fb38e64d88cfcf5fb1791175df078f2f --- /dev/null +++ b/examples/flutter-todo-list/ios/Runner/Base.lproj/Main.storyboard @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/examples/flutter-todo-list/ios/Runner/Info.plist b/examples/flutter-todo-list/ios/Runner/Info.plist new file mode 100644 index 0000000000000000000000000000000000000000..cfec6d30099ead7baa322db7a7cc5742459301f6 --- /dev/null +++ b/examples/flutter-todo-list/ios/Runner/Info.plist @@ -0,0 +1,45 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + flutter_todo_app + 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 + + UIViewControllerBasedStatusBarAppearance + + + diff --git a/examples/flutter-todo-list/ios/Runner/Runner-Bridging-Header.h b/examples/flutter-todo-list/ios/Runner/Runner-Bridging-Header.h new file mode 100644 index 0000000000000000000000000000000000000000..308a2a560b42f17aaf3c36e4e9c8cd07182fbb7e --- /dev/null +++ b/examples/flutter-todo-list/ios/Runner/Runner-Bridging-Header.h @@ -0,0 +1 @@ +#import "GeneratedPluginRegistrant.h" diff --git a/examples/flutter-todo-list/lib/main.dart b/examples/flutter-todo-list/lib/main.dart new file mode 100644 index 0000000000000000000000000000000000000000..b2defda715b9fccb1e7fd321c9a9c313d9d6a159 --- /dev/null +++ b/examples/flutter-todo-list/lib/main.dart @@ -0,0 +1,168 @@ +import 'package:flutter/material.dart'; +import 'package:supabase/supabase.dart'; + +// 在这里设置你的sdk信息 +final youSite = ''; +final youAnon = ''; + +void main() { + return runApp(const TodoApp()); +} + +class TodoApp extends StatelessWidget { + const TodoApp({Key? key}) : super(key: key); + + @override + Widget build(BuildContext context) { + return MaterialApp( + title: 'Todo list', + home: const TodoList(), + theme: + ThemeData(brightness: Brightness.dark, primaryColor: Colors.blueGrey), + ); + } +} + +class TodoList extends StatefulWidget { + const TodoList({Key? key}) : super(key: key); + + @override + _TodoListState createState() => _TodoListState(); +} + +class _TodoListState extends State { + final client = SupabaseClient(youSite, youAnon); + final TextEditingController _inputController = TextEditingController(); + List _todos = []; + + @override + void initState() { + super.initState(); + _getList(); + } + + void _getList() async { + final response = + await client.from('todos').select().order('updated_at').execute(); + if (response.error == null) { + setState(() { + this._todos = + (response.data as List).map((e) => Todo.fromMap(e)).toList(); + }); + } + } + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar(title: const Text('Todo list')), + body: ListView( + padding: const EdgeInsets.symmetric(vertical: 8.0), + children: _todos.map((Todo todo) { + return TodoItem( + todo: todo, + handleTodoChange: _handleTodoChange, + ); + }).toList()), + floatingActionButton: FloatingActionButton( + onPressed: () => _handleDisplayDialog(), + tooltip: 'Add Item', + child: const Icon(Icons.add)), + ); + } + + void _addTodoItem(String name) async { + if (name.isNotEmpty) { + var response = await client + .from('todos') + .insert({'name': name, 'checked': false}).execute(); + if (response.error == null) { + var todo = Todo(id: response.data[0]['id'], name: name, checked: false); + setState(() { + _todos.add(todo); + }); + } + } + _inputController.clear(); + } + + void _handleTodoChange(Todo todo) { + setState(() { + todo.checked = !todo.checked; + }); + client.from('todos') + .update({'checked': todo.checked}).match({'id': todo.id}).execute(); + } + + Future _handleDisplayDialog() async { + return showDialog( + context: context, + barrierDismissible: false, + builder: (BuildContext context) { + return AlertDialog( + title: const Text('Add a new todo item'), + content: TextField( + controller: _inputController, + decoration: const InputDecoration(hintText: 'Type your new todo'), + ), + actions: [ + TextButton( + child: const Text('Add'), + onPressed: () { + Navigator.of(context).pop(); + _addTodoItem(_inputController.text); + }, + ), + ], + ); + }, + ); + } +} + +/// the todo data interface +class Todo { + final int id; + final String name; + bool checked; + + Todo({required this.id, required this.name, required this.checked}); + + Todo.fromMap(Map map) + : id = map['id'], + name = map['name'], + checked = map['checked']; + + Map toMap() { + return {'id': id, 'name': name, 'checked': checked}; + } +} + +class TodoItem extends StatelessWidget { + final Todo todo; + final Function handleTodoChange; + TodoItem({required this.todo, required this.handleTodoChange}) + : super(key: ObjectKey(todo)); + + TextStyle? _getTextStyle(bool checked) { + if (!checked) return null; + + return const TextStyle( + color: Colors.white54, + decoration: TextDecoration.lineThrough, + ); + } + + @override + Widget build(BuildContext context) { + return ListTile( + onTap: () { + handleTodoChange(todo); + }, + leading: CircleAvatar( + child: Text(todo.name[0]), + ), + title: Text(todo.name, style: _getTextStyle(todo.checked)), + ); + } +} diff --git a/examples/flutter-todo-list/pubspec.lock b/examples/flutter-todo-list/pubspec.lock new file mode 100644 index 0000000000000000000000000000000000000000..417f8bfc907c467aac3119e96d88353f5040e82c --- /dev/null +++ b/examples/flutter-todo-list/pubspec.lock @@ -0,0 +1,258 @@ +# Generated by pub +# See https://dart.dev/tools/pub/glossary#lockfile +packages: + async: + dependency: transitive + description: + name: async + url: "https://pub.flutter-io.cn" + source: hosted + version: "2.6.1" + boolean_selector: + dependency: transitive + description: + name: boolean_selector + url: "https://pub.flutter-io.cn" + source: hosted + version: "2.1.0" + characters: + dependency: transitive + description: + name: characters + url: "https://pub.flutter-io.cn" + source: hosted + version: "1.1.0" + charcode: + dependency: transitive + description: + name: charcode + url: "https://pub.flutter-io.cn" + source: hosted + version: "1.2.0" + clock: + dependency: transitive + description: + name: clock + url: "https://pub.flutter-io.cn" + source: hosted + version: "1.1.0" + collection: + dependency: transitive + description: + name: collection + url: "https://pub.flutter-io.cn" + source: hosted + version: "1.15.0" + crypto: + dependency: transitive + description: + name: crypto + url: "https://pub.flutter-io.cn" + source: hosted + version: "3.0.1" + cupertino_icons: + dependency: "direct main" + description: + name: cupertino_icons + url: "https://pub.flutter-io.cn" + source: hosted + version: "1.0.3" + fake_async: + dependency: transitive + description: + name: fake_async + url: "https://pub.flutter-io.cn" + source: hosted + version: "1.2.0" + flutter: + dependency: "direct main" + description: flutter + source: sdk + version: "0.0.0" + flutter_lints: + dependency: "direct dev" + description: + name: flutter_lints + url: "https://pub.flutter-io.cn" + source: hosted + version: "1.0.4" + flutter_test: + dependency: "direct dev" + description: flutter + source: sdk + version: "0.0.0" + gotrue: + dependency: transitive + description: + name: gotrue + url: "https://pub.flutter-io.cn" + source: hosted + version: "0.1.1" + http: + dependency: transitive + description: + name: http + url: "https://pub.flutter-io.cn" + source: hosted + version: "0.13.3" + http_parser: + dependency: transitive + description: + name: http_parser + url: "https://pub.flutter-io.cn" + source: hosted + version: "4.0.0" + jwt_decode: + dependency: transitive + description: + name: jwt_decode + url: "https://pub.flutter-io.cn" + source: hosted + version: "0.3.1" + lints: + dependency: transitive + description: + name: lints + url: "https://pub.flutter-io.cn" + source: hosted + version: "1.0.1" + matcher: + dependency: transitive + description: + name: matcher + url: "https://pub.flutter-io.cn" + source: hosted + version: "0.12.10" + meta: + dependency: transitive + description: + name: meta + url: "https://pub.flutter-io.cn" + source: hosted + version: "1.3.0" + mime: + dependency: transitive + description: + name: mime + url: "https://pub.flutter-io.cn" + source: hosted + version: "1.0.0" + path: + dependency: transitive + description: + name: path + url: "https://pub.flutter-io.cn" + source: hosted + version: "1.8.0" + pedantic: + dependency: transitive + description: + name: pedantic + url: "https://pub.flutter-io.cn" + source: hosted + version: "1.11.1" + postgrest: + dependency: transitive + description: + name: postgrest + url: "https://pub.flutter-io.cn" + source: hosted + version: "0.1.7" + realtime_client: + dependency: transitive + description: + name: realtime_client + url: "https://pub.flutter-io.cn" + source: hosted + version: "0.1.11" + sky_engine: + dependency: transitive + description: flutter + source: sdk + version: "0.0.99" + source_span: + dependency: transitive + description: + name: source_span + url: "https://pub.flutter-io.cn" + source: hosted + version: "1.8.1" + stack_trace: + dependency: transitive + description: + name: stack_trace + url: "https://pub.flutter-io.cn" + source: hosted + version: "1.10.0" + storage_client: + dependency: transitive + description: + name: storage_client + url: "https://pub.flutter-io.cn" + source: hosted + version: "0.0.5" + stream_channel: + dependency: transitive + description: + name: stream_channel + url: "https://pub.flutter-io.cn" + source: hosted + version: "2.1.0" + string_scanner: + dependency: transitive + description: + name: string_scanner + url: "https://pub.flutter-io.cn" + source: hosted + version: "1.1.0" + supabase: + dependency: "direct dev" + description: + name: supabase + url: "https://pub.flutter-io.cn" + source: hosted + version: "0.2.6" + term_glyph: + dependency: transitive + description: + name: term_glyph + url: "https://pub.flutter-io.cn" + source: hosted + version: "1.2.0" + test_api: + dependency: transitive + description: + name: test_api + url: "https://pub.flutter-io.cn" + source: hosted + version: "0.3.0" + typed_data: + dependency: transitive + description: + name: typed_data + url: "https://pub.flutter-io.cn" + source: hosted + version: "1.3.0" + universal_io: + dependency: transitive + description: + name: universal_io + url: "https://pub.flutter-io.cn" + source: hosted + version: "2.0.4" + vector_math: + dependency: transitive + description: + name: vector_math + url: "https://pub.flutter-io.cn" + source: hosted + version: "2.1.0" + web_socket_channel: + dependency: transitive + description: + name: web_socket_channel + url: "https://pub.flutter-io.cn" + source: hosted + version: "2.1.0" +sdks: + dart: ">=2.12.0 <3.0.0" diff --git a/examples/flutter-todo-list/pubspec.yaml b/examples/flutter-todo-list/pubspec.yaml new file mode 100644 index 0000000000000000000000000000000000000000..4ba676a44f63b72b210399ba4b546498b166296f --- /dev/null +++ b/examples/flutter-todo-list/pubspec.yaml @@ -0,0 +1,90 @@ +name: flutter_todo_app +description: A new Flutter project. + +# The following line prevents the package from being accidentally published to +# pub.dev using `flutter pub publish`. This is preferred for private packages. +publish_to: 'none' # Remove this line if you wish to publish to pub.dev + +# The following defines the version and build number for your application. +# A version number is three numbers separated by dots, like 1.2.43 +# followed by an optional build number separated by a +. +# Both the version and the builder number may be overridden in flutter +# build by specifying --build-name and --build-number, respectively. +# In Android, build-name is used as versionName while build-number used as versionCode. +# Read more about Android versioning at https://developer.android.com/studio/publish/versioning +# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. +# Read more about iOS versioning at +# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html +version: 1.0.0+1 + +environment: + sdk: ">=2.12.0 <3.0.0" + +# 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 + + + # The following adds the Cupertino Icons font to your application. + # Use with the CupertinoIcons class for iOS style icons. + cupertino_icons: ^1.0.2 + +dev_dependencies: + flutter_test: + sdk: flutter + + # The "flutter_lints" package below contains a set of recommended lints to + # encourage good coding practices. The lint set provided by the package is + # activated in the `analysis_options.yaml` file located at the root of your + # package. See that file for information about deactivating specific lint + # rules and activating additional ones. + flutter_lints: ^1.0.0 + supabase: ^0.2.6 + +# For information on the generic Dart part of this file, see the +# following page: https://dart.dev/tools/pub/pubspec + +# The following section is specific to Flutter. +flutter: + + # The following line ensures that the Material Icons font is + # included with your application, so that you can use the icons in + # the material Icons class. + uses-material-design: true + + # To add assets to your application, add an assets section, like this: + # assets: + # - images/a_dot_burr.jpeg + # - images/a_dot_ham.jpeg + + # An image asset can refer to one or more resolution-specific "variants", see + # https://flutter.dev/assets-and-images/#resolution-aware. + + # For details regarding adding assets from package dependencies, see + # https://flutter.dev/assets-and-images/#from-packages + + # To add custom fonts to your application, add a fonts section here, + # in this "flutter" section. Each entry in this list should have a + # "family" key with the font family name, and a "fonts" key with a + # list giving the asset and other descriptors for the font. For + # example: + # fonts: + # - family: Schyler + # fonts: + # - asset: fonts/Schyler-Regular.ttf + # - asset: fonts/Schyler-Italic.ttf + # style: italic + # - family: Trajan Pro + # fonts: + # - asset: fonts/TrajanPro.ttf + # - asset: fonts/TrajanPro_Bold.ttf + # weight: 700 + # + # For details regarding fonts from package dependencies, + # see https://flutter.dev/custom-fonts/#from-packages diff --git a/examples/flutter-todo-list/test/widget_test.dart b/examples/flutter-todo-list/test/widget_test.dart new file mode 100644 index 0000000000000000000000000000000000000000..37d761bafedda0118517659aa28a52c67617e0ff --- /dev/null +++ b/examples/flutter-todo-list/test/widget_test.dart @@ -0,0 +1,30 @@ +// This is a basic Flutter widget test. +// +// To perform an interaction with a widget in your test, use the WidgetTester +// utility that Flutter provides. 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:flutter_todo_app/main.dart'; + +void main() { + testWidgets('Counter increments smoke test', (WidgetTester tester) async { + // Build our app and trigger a frame. + await tester.pumpWidget(const TodoApp()); + + // 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/examples/flutter-todo-list/web/favicon.png b/examples/flutter-todo-list/web/favicon.png new file mode 100644 index 0000000000000000000000000000000000000000..8aaa46ac1ae21512746f852a42ba87e4165dfdd1 Binary files /dev/null and b/examples/flutter-todo-list/web/favicon.png differ diff --git a/examples/flutter-todo-list/web/icons/Icon-192.png b/examples/flutter-todo-list/web/icons/Icon-192.png new file mode 100644 index 0000000000000000000000000000000000000000..b749bfef07473333cf1dd31e9eed89862a5d52aa Binary files /dev/null and b/examples/flutter-todo-list/web/icons/Icon-192.png differ diff --git a/examples/flutter-todo-list/web/icons/Icon-512.png b/examples/flutter-todo-list/web/icons/Icon-512.png new file mode 100644 index 0000000000000000000000000000000000000000..88cfd48dff1169879ba46840804b412fe02fefd6 Binary files /dev/null and b/examples/flutter-todo-list/web/icons/Icon-512.png differ diff --git a/examples/flutter-todo-list/web/icons/Icon-maskable-192.png b/examples/flutter-todo-list/web/icons/Icon-maskable-192.png new file mode 100644 index 0000000000000000000000000000000000000000..eb9b4d76e525556d5d89141648c724331630325d Binary files /dev/null and b/examples/flutter-todo-list/web/icons/Icon-maskable-192.png differ diff --git a/examples/flutter-todo-list/web/icons/Icon-maskable-512.png b/examples/flutter-todo-list/web/icons/Icon-maskable-512.png new file mode 100644 index 0000000000000000000000000000000000000000..d69c56691fbdb0b7efa65097c7cc1edac12a6d3e Binary files /dev/null and b/examples/flutter-todo-list/web/icons/Icon-maskable-512.png differ diff --git a/examples/flutter-todo-list/web/index.html b/examples/flutter-todo-list/web/index.html new file mode 100644 index 0000000000000000000000000000000000000000..ce970e89c689b41be62f28b4cce882cd39d89ad3 --- /dev/null +++ b/examples/flutter-todo-list/web/index.html @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + flutter_todo_app + + + + + + + diff --git a/examples/flutter-todo-list/web/manifest.json b/examples/flutter-todo-list/web/manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..bf6244d1290e7f0e7e0d8c2f4f1476dbd40b5cde --- /dev/null +++ b/examples/flutter-todo-list/web/manifest.json @@ -0,0 +1,35 @@ +{ + "name": "flutter_todo_app", + "short_name": "flutter_todo_app", + "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/examples/flutter-user-management/.dart_tool/package_config.json b/examples/flutter-user-management/.dart_tool/package_config.json deleted file mode 100644 index 3fffc2fb9eb4c8a6a7a89fd48b4b2540b9d7b9a7..0000000000000000000000000000000000000000 --- a/examples/flutter-user-management/.dart_tool/package_config.json +++ /dev/null @@ -1,488 +0,0 @@ -{ - "configVersion": 2, - "packages": [ - { - "name": "archive", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/archive-3.1.2", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "args", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/args-2.0.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "async", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/async-2.6.1", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "boolean_selector", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/boolean_selector-2.1.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "characters", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/characters-1.1.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "charcode", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/charcode-1.2.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "clock", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/clock-1.1.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "collection", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/collection-1.15.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "cross_file", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/cross_file-0.3.1+4", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "crypto", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/crypto-3.0.1", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "cupertino_icons", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/cupertino_icons-1.0.3", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "fake_async", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/fake_async-1.2.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "ffi", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/ffi-1.1.2", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "file", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/file-6.1.2", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "flutter", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/packages/flutter", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "flutter_launcher_icons", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_launcher_icons-0.9.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "flutter_plugin_android_lifecycle", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_plugin_android_lifecycle-2.0.2", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "flutter_secure_storage", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_secure_storage-4.2.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "flutter_test", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/packages/flutter_test", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "flutter_web_plugins", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/packages/flutter_web_plugins", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "gotrue", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/gotrue-0.0.7", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "http", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/http-0.13.3", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "http_parser", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/http_parser-4.0.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "image", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/image-3.0.2", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "image_picker", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/image_picker-0.8.2", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "image_picker_for_web", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/image_picker_for_web-2.1.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "image_picker_platform_interface", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/image_picker_platform_interface-2.2.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "js", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/js-0.6.3", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "jwt_decode", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/jwt_decode-0.3.1", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "lint", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/lint-1.5.3", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "matcher", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/matcher-0.12.10", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "meta", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/meta-1.3.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "mime", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/mime-1.0.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "path", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/path-1.8.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "path_provider_linux", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_linux-2.0.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "path_provider_platform_interface", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_platform_interface-2.0.1", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "path_provider_windows", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_windows-2.0.1", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "pedantic", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/pedantic-1.11.1", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "petitparser", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/petitparser-4.1.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "platform", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/platform-3.0.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "plugin_platform_interface", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/plugin_platform_interface-2.0.1", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "postgrest", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/postgrest-0.1.4", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "process", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/process-4.2.1", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "realtime_client", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/realtime_client-0.1.3", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "rounded_loading_button", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/rounded_loading_button-2.0.5", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "rxdart", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/rxdart-0.26.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "shared_preferences", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences-2.0.6", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "shared_preferences_linux", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences_linux-2.0.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "shared_preferences_macos", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences_macos-2.0.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "shared_preferences_platform_interface", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences_platform_interface-2.0.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "shared_preferences_web", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences_web-2.0.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "shared_preferences_windows", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences_windows-2.0.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "sky_engine", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/bin/cache/pkg/sky_engine", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "source_span", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/source_span-1.8.1", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "stack_trace", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/stack_trace-1.10.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "storage_client", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/storage_client-0.0.2", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "stream_channel", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/stream_channel-2.1.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "string_scanner", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/string_scanner-1.1.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "supabase", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/supabase-0.0.2", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "supabase_flutter", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/supabase_flutter-0.0.3", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "term_glyph", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/term_glyph-1.2.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "test_api", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/test_api-0.3.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "typed_data", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/typed_data-1.3.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "uni_links", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/uni_links-0.5.1", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "uni_links_platform_interface", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/uni_links_platform_interface-1.0.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "uni_links_web", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/uni_links_web-0.1.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "universal_io", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/universal_io-2.0.4", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "url_launcher", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher-6.0.9", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "url_launcher_linux", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher_linux-2.0.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "url_launcher_macos", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher_macos-2.0.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "url_launcher_platform_interface", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher_platform_interface-2.0.4", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "url_launcher_web", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher_web-2.0.1", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "url_launcher_windows", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher_windows-2.0.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "vector_math", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.1.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "web_socket_channel", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/web_socket_channel-2.1.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "win32", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/win32-2.2.5", - "packageUri": "lib/", - "languageVersion": "2.13" - }, - { - "name": "xdg_directories", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/xdg_directories-0.2.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "xml", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/xml-5.1.2", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "yaml", - "rootUri": "file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/yaml-3.1.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "supabase_demo", - "rootUri": "../", - "packageUri": "lib/", - "languageVersion": "2.12" - } - ], - "generated": "2021-07-19T01:13:21.414488Z", - "generator": "pub", - "generatorVersion": "2.13.4" -} diff --git a/examples/flutter-user-management/.dart_tool/package_config_subset b/examples/flutter-user-management/.dart_tool/package_config_subset deleted file mode 100644 index aaa82c5059f0aa2fb5650548819b3c2830a453cd..0000000000000000000000000000000000000000 --- a/examples/flutter-user-management/.dart_tool/package_config_subset +++ /dev/null @@ -1,321 +0,0 @@ -supabase_demo -2.12 -file:///Users/phamhieu/Documents/projects/nodejs/supabase/examples/flutter-user-management/ -file:///Users/phamhieu/Documents/projects/nodejs/supabase/examples/flutter-user-management/lib/ -archive -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/archive-3.1.2/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/archive-3.1.2/lib/ -args -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/args-2.0.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/args-2.0.0/lib/ -async -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/async-2.6.1/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/async-2.6.1/lib/ -boolean_selector -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/boolean_selector-2.1.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/boolean_selector-2.1.0/lib/ -characters -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/characters-1.1.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/characters-1.1.0/lib/ -charcode -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/charcode-1.2.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/charcode-1.2.0/lib/ -clock -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/clock-1.1.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/clock-1.1.0/lib/ -collection -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/collection-1.15.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/collection-1.15.0/lib/ -cross_file -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/cross_file-0.3.1+4/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/cross_file-0.3.1+4/lib/ -crypto -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/crypto-3.0.1/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/crypto-3.0.1/lib/ -cupertino_icons -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/cupertino_icons-1.0.3/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/cupertino_icons-1.0.3/lib/ -fake_async -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/fake_async-1.2.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/fake_async-1.2.0/lib/ -ffi -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/ffi-1.1.2/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/ffi-1.1.2/lib/ -file -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/file-6.1.2/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/file-6.1.2/lib/ -flutter_launcher_icons -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_launcher_icons-0.9.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_launcher_icons-0.9.0/lib/ -flutter_plugin_android_lifecycle -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_plugin_android_lifecycle-2.0.2/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_plugin_android_lifecycle-2.0.2/lib/ -flutter_secure_storage -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_secure_storage-4.2.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_secure_storage-4.2.0/lib/ -gotrue -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/gotrue-0.0.7/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/gotrue-0.0.7/lib/ -http -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/http-0.13.3/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/http-0.13.3/lib/ -http_parser -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/http_parser-4.0.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/http_parser-4.0.0/lib/ -image -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/image-3.0.2/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/image-3.0.2/lib/ -image_picker -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/image_picker-0.8.2/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/image_picker-0.8.2/lib/ -image_picker_for_web -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/image_picker_for_web-2.1.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/image_picker_for_web-2.1.0/lib/ -image_picker_platform_interface -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/image_picker_platform_interface-2.2.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/image_picker_platform_interface-2.2.0/lib/ -js -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/js-0.6.3/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/js-0.6.3/lib/ -jwt_decode -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/jwt_decode-0.3.1/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/jwt_decode-0.3.1/lib/ -lint -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/lint-1.5.3/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/lint-1.5.3/lib/ -matcher -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/matcher-0.12.10/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/matcher-0.12.10/lib/ -meta -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/meta-1.3.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/meta-1.3.0/lib/ -mime -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/mime-1.0.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/mime-1.0.0/lib/ -path -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/path-1.8.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/path-1.8.0/lib/ -path_provider_linux -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_linux-2.0.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_linux-2.0.0/lib/ -path_provider_platform_interface -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_platform_interface-2.0.1/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_platform_interface-2.0.1/lib/ -path_provider_windows -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_windows-2.0.1/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_windows-2.0.1/lib/ -pedantic -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/pedantic-1.11.1/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/pedantic-1.11.1/lib/ -petitparser -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/petitparser-4.1.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/petitparser-4.1.0/lib/ -platform -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/platform-3.0.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/platform-3.0.0/lib/ -plugin_platform_interface -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/plugin_platform_interface-2.0.1/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/plugin_platform_interface-2.0.1/lib/ -postgrest -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/postgrest-0.1.4/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/postgrest-0.1.4/lib/ -process -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/process-4.2.1/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/process-4.2.1/lib/ -realtime_client -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/realtime_client-0.1.3/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/realtime_client-0.1.3/lib/ -rounded_loading_button -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/rounded_loading_button-2.0.5/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/rounded_loading_button-2.0.5/lib/ -rxdart -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/rxdart-0.26.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/rxdart-0.26.0/lib/ -shared_preferences -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences-2.0.6/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences-2.0.6/lib/ -shared_preferences_linux -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences_linux-2.0.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences_linux-2.0.0/lib/ -shared_preferences_macos -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences_macos-2.0.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences_macos-2.0.0/lib/ -shared_preferences_platform_interface -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences_platform_interface-2.0.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences_platform_interface-2.0.0/lib/ -shared_preferences_web -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences_web-2.0.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences_web-2.0.0/lib/ -shared_preferences_windows -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences_windows-2.0.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences_windows-2.0.0/lib/ -source_span -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/source_span-1.8.1/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/source_span-1.8.1/lib/ -stack_trace -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/stack_trace-1.10.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/stack_trace-1.10.0/lib/ -storage_client -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/storage_client-0.0.2/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/storage_client-0.0.2/lib/ -stream_channel -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/stream_channel-2.1.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/stream_channel-2.1.0/lib/ -string_scanner -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/string_scanner-1.1.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/string_scanner-1.1.0/lib/ -supabase -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/supabase-0.0.2/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/supabase-0.0.2/lib/ -supabase_flutter -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/supabase_flutter-0.0.3/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/supabase_flutter-0.0.3/lib/ -term_glyph -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/term_glyph-1.2.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/term_glyph-1.2.0/lib/ -test_api -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/test_api-0.3.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/test_api-0.3.0/lib/ -typed_data -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/typed_data-1.3.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/typed_data-1.3.0/lib/ -uni_links -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/uni_links-0.5.1/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/uni_links-0.5.1/lib/ -uni_links_platform_interface -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/uni_links_platform_interface-1.0.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/uni_links_platform_interface-1.0.0/lib/ -uni_links_web -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/uni_links_web-0.1.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/uni_links_web-0.1.0/lib/ -universal_io -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/universal_io-2.0.4/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/universal_io-2.0.4/lib/ -url_launcher -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher-6.0.9/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher-6.0.9/lib/ -url_launcher_linux -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher_linux-2.0.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher_linux-2.0.0/lib/ -url_launcher_macos -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher_macos-2.0.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher_macos-2.0.0/lib/ -url_launcher_platform_interface -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher_platform_interface-2.0.4/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher_platform_interface-2.0.4/lib/ -url_launcher_web -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher_web-2.0.1/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher_web-2.0.1/lib/ -url_launcher_windows -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher_windows-2.0.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher_windows-2.0.0/lib/ -vector_math -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.1.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.1.0/lib/ -web_socket_channel -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/web_socket_channel-2.1.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/web_socket_channel-2.1.0/lib/ -win32 -2.13 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/win32-2.2.5/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/win32-2.2.5/lib/ -xdg_directories -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/xdg_directories-0.2.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/xdg_directories-0.2.0/lib/ -xml -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/xml-5.1.2/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/xml-5.1.2/lib/ -yaml -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/yaml-3.1.0/ -file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/yaml-3.1.0/lib/ -sky_engine -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/bin/cache/pkg/sky_engine/ -file:///Users/phamhieu/Documents/sdks/flutter/bin/cache/pkg/sky_engine/lib/ -flutter -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/packages/flutter/ -file:///Users/phamhieu/Documents/sdks/flutter/packages/flutter/lib/ -flutter_test -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/packages/flutter_test/ -file:///Users/phamhieu/Documents/sdks/flutter/packages/flutter_test/lib/ -flutter_web_plugins -2.12 -file:///Users/phamhieu/Documents/sdks/flutter/packages/flutter_web_plugins/ -file:///Users/phamhieu/Documents/sdks/flutter/packages/flutter_web_plugins/lib/ -2 diff --git a/examples/flutter-user-management/.dart_tool/version b/examples/flutter-user-management/.dart_tool/version deleted file mode 100644 index 6b4d157738258616900a960745945297f0cb7569..0000000000000000000000000000000000000000 --- a/examples/flutter-user-management/.dart_tool/version +++ /dev/null @@ -1 +0,0 @@ -2.2.3 \ No newline at end of file diff --git a/examples/flutter-user-management/.flutter-plugins b/examples/flutter-user-management/.flutter-plugins deleted file mode 100644 index 9777d32994c4e3039f44906e3ad8cfb4d7344345..0000000000000000000000000000000000000000 --- a/examples/flutter-user-management/.flutter-plugins +++ /dev/null @@ -1,19 +0,0 @@ -# This is a generated file; do not edit or check into version control. -flutter_plugin_android_lifecycle=/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_plugin_android_lifecycle-2.0.2/ -flutter_secure_storage=/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_secure_storage-4.2.0/ -image_picker=/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/image_picker-0.8.2/ -image_picker_for_web=/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/image_picker_for_web-2.1.0/ -path_provider_linux=/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_linux-2.0.0/ -path_provider_windows=/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_windows-2.0.1/ -shared_preferences=/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences-2.0.6/ -shared_preferences_linux=/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences_linux-2.0.0/ -shared_preferences_macos=/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences_macos-2.0.0/ -shared_preferences_web=/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences_web-2.0.0/ -shared_preferences_windows=/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences_windows-2.0.0/ -uni_links=/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/uni_links-0.5.1/ -uni_links_web=/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/uni_links_web-0.1.0/ -url_launcher=/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher-6.0.9/ -url_launcher_linux=/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher_linux-2.0.0/ -url_launcher_macos=/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher_macos-2.0.0/ -url_launcher_web=/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher_web-2.0.1/ -url_launcher_windows=/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher_windows-2.0.0/ diff --git a/examples/flutter-user-management/.flutter-plugins-dependencies b/examples/flutter-user-management/.flutter-plugins-dependencies deleted file mode 100644 index e9c125c19cac37b6a0d81298a3a180093929a0fa..0000000000000000000000000000000000000000 --- a/examples/flutter-user-management/.flutter-plugins-dependencies +++ /dev/null @@ -1 +0,0 @@ -{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"flutter_secure_storage","path":"/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_secure_storage-4.2.0/","dependencies":[]},{"name":"image_picker","path":"/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/image_picker-0.8.2/","dependencies":[]},{"name":"shared_preferences","path":"/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences-2.0.6/","dependencies":[]},{"name":"uni_links","path":"/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/uni_links-0.5.1/","dependencies":[]},{"name":"url_launcher","path":"/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher-6.0.9/","dependencies":[]}],"android":[{"name":"flutter_plugin_android_lifecycle","path":"/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_plugin_android_lifecycle-2.0.2/","dependencies":[]},{"name":"flutter_secure_storage","path":"/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_secure_storage-4.2.0/","dependencies":[]},{"name":"image_picker","path":"/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/image_picker-0.8.2/","dependencies":["flutter_plugin_android_lifecycle"]},{"name":"shared_preferences","path":"/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences-2.0.6/","dependencies":[]},{"name":"uni_links","path":"/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/uni_links-0.5.1/","dependencies":[]},{"name":"url_launcher","path":"/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher-6.0.9/","dependencies":[]}],"macos":[{"name":"shared_preferences_macos","path":"/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences_macos-2.0.0/","dependencies":[]},{"name":"url_launcher_macos","path":"/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher_macos-2.0.0/","dependencies":[]}],"linux":[{"name":"flutter_secure_storage","path":"/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_secure_storage-4.2.0/","dependencies":[]},{"name":"path_provider_linux","path":"/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_linux-2.0.0/","dependencies":[]},{"name":"shared_preferences_linux","path":"/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences_linux-2.0.0/","dependencies":["path_provider_linux"]},{"name":"url_launcher_linux","path":"/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher_linux-2.0.0/","dependencies":[]}],"windows":[{"name":"path_provider_windows","path":"/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_windows-2.0.1/","dependencies":[]},{"name":"shared_preferences_windows","path":"/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences_windows-2.0.0/","dependencies":["path_provider_windows"]},{"name":"url_launcher_windows","path":"/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher_windows-2.0.0/","dependencies":[]}],"web":[{"name":"image_picker_for_web","path":"/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/image_picker_for_web-2.1.0/","dependencies":[]},{"name":"shared_preferences_web","path":"/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences_web-2.0.0/","dependencies":[]},{"name":"uni_links_web","path":"/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/uni_links_web-0.1.0/","dependencies":[]},{"name":"url_launcher_web","path":"/Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher_web-2.0.1/","dependencies":[]}]},"dependencyGraph":[{"name":"flutter_plugin_android_lifecycle","dependencies":[]},{"name":"flutter_secure_storage","dependencies":[]},{"name":"image_picker","dependencies":["flutter_plugin_android_lifecycle","image_picker_for_web"]},{"name":"image_picker_for_web","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]},{"name":"shared_preferences","dependencies":["shared_preferences_linux","shared_preferences_macos","shared_preferences_web","shared_preferences_windows"]},{"name":"shared_preferences_linux","dependencies":["path_provider_linux"]},{"name":"shared_preferences_macos","dependencies":[]},{"name":"shared_preferences_web","dependencies":[]},{"name":"shared_preferences_windows","dependencies":["path_provider_windows"]},{"name":"uni_links","dependencies":["uni_links_web"]},{"name":"uni_links_web","dependencies":[]},{"name":"url_launcher","dependencies":["url_launcher_linux","url_launcher_macos","url_launcher_web","url_launcher_windows"]},{"name":"url_launcher_linux","dependencies":[]},{"name":"url_launcher_macos","dependencies":[]},{"name":"url_launcher_web","dependencies":[]},{"name":"url_launcher_windows","dependencies":[]}],"date_created":"2021-07-19 08:13:21.531040","version":"2.2.3"} \ No newline at end of file diff --git a/examples/flutter-user-management/.packages b/examples/flutter-user-management/.packages deleted file mode 100644 index 567fb2241c1cc77c6b0f4ffce1d3b440c800769b..0000000000000000000000000000000000000000 --- a/examples/flutter-user-management/.packages +++ /dev/null @@ -1,86 +0,0 @@ -# This file is deprecated. Tools should instead consume -# `.dart_tools/package_config.json`. -# -# For more info see: https://dart.dev/go/dot-packages-deprecation -# -# Generated by pub on 2021-07-19 08:13:21.390732. -archive:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/archive-3.1.2/lib/ -args:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/args-2.0.0/lib/ -async:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/async-2.6.1/lib/ -boolean_selector:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/boolean_selector-2.1.0/lib/ -characters:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/characters-1.1.0/lib/ -charcode:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/charcode-1.2.0/lib/ -clock:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/clock-1.1.0/lib/ -collection:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/collection-1.15.0/lib/ -cross_file:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/cross_file-0.3.1+4/lib/ -crypto:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/crypto-3.0.1/lib/ -cupertino_icons:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/cupertino_icons-1.0.3/lib/ -fake_async:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/fake_async-1.2.0/lib/ -ffi:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/ffi-1.1.2/lib/ -file:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/file-6.1.2/lib/ -flutter:file:///Users/phamhieu/Documents/sdks/flutter/packages/flutter/lib/ -flutter_launcher_icons:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_launcher_icons-0.9.0/lib/ -flutter_plugin_android_lifecycle:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_plugin_android_lifecycle-2.0.2/lib/ -flutter_secure_storage:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_secure_storage-4.2.0/lib/ -flutter_test:file:///Users/phamhieu/Documents/sdks/flutter/packages/flutter_test/lib/ -flutter_web_plugins:file:///Users/phamhieu/Documents/sdks/flutter/packages/flutter_web_plugins/lib/ -gotrue:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/gotrue-0.0.7/lib/ -http:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/http-0.13.3/lib/ -http_parser:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/http_parser-4.0.0/lib/ -image:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/image-3.0.2/lib/ -image_picker:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/image_picker-0.8.2/lib/ -image_picker_for_web:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/image_picker_for_web-2.1.0/lib/ -image_picker_platform_interface:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/image_picker_platform_interface-2.2.0/lib/ -js:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/js-0.6.3/lib/ -jwt_decode:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/jwt_decode-0.3.1/lib/ -lint:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/lint-1.5.3/lib/ -matcher:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/matcher-0.12.10/lib/ -meta:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/meta-1.3.0/lib/ -mime:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/mime-1.0.0/lib/ -path:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/path-1.8.0/lib/ -path_provider_linux:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_linux-2.0.0/lib/ -path_provider_platform_interface:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_platform_interface-2.0.1/lib/ -path_provider_windows:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_windows-2.0.1/lib/ -pedantic:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/pedantic-1.11.1/lib/ -petitparser:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/petitparser-4.1.0/lib/ -platform:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/platform-3.0.0/lib/ -plugin_platform_interface:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/plugin_platform_interface-2.0.1/lib/ -postgrest:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/postgrest-0.1.4/lib/ -process:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/process-4.2.1/lib/ -realtime_client:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/realtime_client-0.1.3/lib/ -rounded_loading_button:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/rounded_loading_button-2.0.5/lib/ -rxdart:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/rxdart-0.26.0/lib/ -shared_preferences:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences-2.0.6/lib/ -shared_preferences_linux:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences_linux-2.0.0/lib/ -shared_preferences_macos:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences_macos-2.0.0/lib/ -shared_preferences_platform_interface:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences_platform_interface-2.0.0/lib/ -shared_preferences_web:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences_web-2.0.0/lib/ -shared_preferences_windows:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences_windows-2.0.0/lib/ -sky_engine:file:///Users/phamhieu/Documents/sdks/flutter/bin/cache/pkg/sky_engine/lib/ -source_span:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/source_span-1.8.1/lib/ -stack_trace:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/stack_trace-1.10.0/lib/ -storage_client:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/storage_client-0.0.2/lib/ -stream_channel:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/stream_channel-2.1.0/lib/ -string_scanner:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/string_scanner-1.1.0/lib/ -supabase:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/supabase-0.0.2/lib/ -supabase_flutter:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/supabase_flutter-0.0.3/lib/ -term_glyph:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/term_glyph-1.2.0/lib/ -test_api:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/test_api-0.3.0/lib/ -typed_data:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/typed_data-1.3.0/lib/ -uni_links:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/uni_links-0.5.1/lib/ -uni_links_platform_interface:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/uni_links_platform_interface-1.0.0/lib/ -uni_links_web:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/uni_links_web-0.1.0/lib/ -universal_io:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/universal_io-2.0.4/lib/ -url_launcher:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher-6.0.9/lib/ -url_launcher_linux:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher_linux-2.0.0/lib/ -url_launcher_macos:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher_macos-2.0.0/lib/ -url_launcher_platform_interface:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher_platform_interface-2.0.4/lib/ -url_launcher_web:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher_web-2.0.1/lib/ -url_launcher_windows:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher_windows-2.0.0/lib/ -vector_math:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.1.0/lib/ -web_socket_channel:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/web_socket_channel-2.1.0/lib/ -win32:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/win32-2.2.5/lib/ -xdg_directories:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/xdg_directories-0.2.0/lib/ -xml:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/xml-5.1.2/lib/ -yaml:file:///Users/phamhieu/Documents/sdks/flutter/.pub-cache/hosted/pub.dartlang.org/yaml-3.1.0/lib/ -supabase_demo:lib/ diff --git a/examples/flutter-user-management/lib/generated_plugin_registrant.dart b/examples/flutter-user-management/lib/generated_plugin_registrant.dart deleted file mode 100644 index b10a88851050a4f10326c4fbd67965445d53adfb..0000000000000000000000000000000000000000 --- a/examples/flutter-user-management/lib/generated_plugin_registrant.dart +++ /dev/null @@ -1,21 +0,0 @@ -// -// Generated file. Do not edit. -// - -// ignore_for_file: lines_longer_than_80_chars - -import 'package:image_picker_for_web/image_picker_for_web.dart'; -import 'package:shared_preferences_web/shared_preferences_web.dart'; -import 'package:uni_links_web/uni_links_web.dart'; -import 'package:url_launcher_web/url_launcher_web.dart'; - -import 'package:flutter_web_plugins/flutter_web_plugins.dart'; - -// ignore: public_member_api_docs -void registerPlugins(Registrar registrar) { - ImagePickerPlugin.registerWith(registrar); - SharedPreferencesPlugin.registerWith(registrar); - UniLinksPlugin.registerWith(registrar); - UrlLauncherPlugin.registerWith(registrar); - registrar.registerMessageHandler(); -} diff --git a/examples/flutter-user-management/supabase_demo.iml b/examples/flutter-user-management/supabase_demo.iml deleted file mode 100644 index e5c837191e06fa89372f5752564eab87bff82401..0000000000000000000000000000000000000000 --- a/examples/flutter-user-management/supabase_demo.iml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/examples/react-todo-list/src/components/Auth.js b/examples/react-todo-list/src/components/Auth.js index 8da4248dd715d098530f96a0295d4e890346a8f4..911b76b9407871747672802958455098ff994f0c 100644 --- a/examples/react-todo-list/src/components/Auth.js +++ b/examples/react-todo-list/src/components/Auth.js @@ -137,43 +137,6 @@ const Auth = () => { -
-
-
-
-
-
- - Or continue with - -
-
- -
-
- - - -
-
- - - -
-
-
); }; diff --git a/examples/vue3-ts-todo-list/src/components/Auth.vue b/examples/vue3-ts-todo-list/src/components/Auth.vue index 83d8453c4ff47c316cbe9d8cd2ee92ed937330c3..7d7264ae48695eefbb8a61c20c8c521e241f32a5 100644 --- a/examples/vue3-ts-todo-list/src/components/Auth.vue +++ b/examples/vue3-ts-todo-list/src/components/Auth.vue @@ -39,42 +39,6 @@ Forgot your password? - -
-
-
-
-
-
- Or continue with -
-
- -
-
- - - -
-
- - - -
-
-
diff --git a/web/docs/gotrue/client/.gitkeep b/web/docs/gotrue/client/.gitkeep deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/web/docs/reference/cli/.gitkeep b/web/docs/reference/cli/.gitkeep deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/web/docs/reference/javascript/.gitkeep b/web/docs/reference/javascript/.gitkeep deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/web/docs/reference/postgres/.gitkeep b/web/docs/reference/postgres/.gitkeep deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000