From d49037f1103ad669c20b85e2e223a7383d4e83c3 Mon Sep 17 00:00:00 2001 From: Nishant Srivastava Date: Mon, 6 Aug 2018 23:29:03 +0200 Subject: [PATCH] added: persist_key_value --- persist_key_value/.gitignore | 9 + .../.idea/libraries/Dart_Packages.xml | 436 +++++++++++++++++ .../.idea/libraries/Dart_SDK.xml | 19 + .../.idea/libraries/Flutter_Plugins.xml | 7 + .../.idea/libraries/Flutter_for_Android.xml | 9 + persist_key_value/.idea/misc.xml | 6 + persist_key_value/.idea/modules.xml | 9 + .../.idea/runConfigurations/main_dart.xml | 6 + persist_key_value/.idea/vcs.xml | 6 + persist_key_value/.idea/workspace.xml | 286 +++++++++++ persist_key_value/.metadata | 8 + persist_key_value/README.md | 8 + persist_key_value/android/.gitignore | 10 + persist_key_value/android/app/build.gradle | 57 +++ .../android/app/src/main/AndroidManifest.xml | 39 ++ .../nisrulz/persistkeyvalue/MainActivity.kt | 13 + .../main/res/drawable/launch_background.xml | 12 + .../src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 544 bytes .../src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 442 bytes .../src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 721 bytes .../main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 1031 bytes .../main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 1443 bytes .../app/src/main/res/values/styles.xml | 8 + persist_key_value/android/build.gradle | 31 ++ persist_key_value/android/gradle.properties | 1 + .../android/gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 53636 bytes .../gradle/wrapper/gradle-wrapper.properties | 6 + persist_key_value/android/gradlew | 160 +++++++ persist_key_value/android/gradlew.bat | 90 ++++ persist_key_value/android/settings.gradle | 15 + persist_key_value/ios/.gitignore | 45 ++ .../ios/Flutter/AppFrameworkInfo.plist | 26 + persist_key_value/ios/Flutter/Debug.xcconfig | 1 + .../ios/Flutter/Release.xcconfig | 1 + .../ios/Runner.xcodeproj/project.pbxproj | 444 ++++++++++++++++++ .../contents.xcworkspacedata | 7 + .../xcshareddata/xcschemes/Runner.xcscheme | 93 ++++ .../contents.xcworkspacedata | 7 + .../ios/Runner/AppDelegate.swift | 13 + .../AppIcon.appiconset/Contents.json | 122 +++++ .../Icon-App-1024x1024@1x.png | Bin 0 -> 11112 bytes .../AppIcon.appiconset/Icon-App-20x20@1x.png | Bin 0 -> 564 bytes .../AppIcon.appiconset/Icon-App-20x20@2x.png | Bin 0 -> 1283 bytes .../AppIcon.appiconset/Icon-App-20x20@3x.png | Bin 0 -> 1588 bytes .../AppIcon.appiconset/Icon-App-29x29@1x.png | Bin 0 -> 1025 bytes .../AppIcon.appiconset/Icon-App-29x29@2x.png | Bin 0 -> 1716 bytes .../AppIcon.appiconset/Icon-App-29x29@3x.png | Bin 0 -> 1920 bytes .../AppIcon.appiconset/Icon-App-40x40@1x.png | Bin 0 -> 1283 bytes .../AppIcon.appiconset/Icon-App-40x40@2x.png | Bin 0 -> 1895 bytes .../AppIcon.appiconset/Icon-App-40x40@3x.png | Bin 0 -> 2665 bytes .../AppIcon.appiconset/Icon-App-60x60@2x.png | Bin 0 -> 2665 bytes .../AppIcon.appiconset/Icon-App-60x60@3x.png | Bin 0 -> 3831 bytes .../AppIcon.appiconset/Icon-App-76x76@1x.png | Bin 0 -> 1888 bytes .../AppIcon.appiconset/Icon-App-76x76@2x.png | Bin 0 -> 3294 bytes .../Icon-App-83.5x83.5@2x.png | Bin 0 -> 3612 bytes .../LaunchImage.imageset/Contents.json | 23 + .../LaunchImage.imageset/LaunchImage.png | Bin 0 -> 68 bytes .../LaunchImage.imageset/LaunchImage@2x.png | Bin 0 -> 68 bytes .../LaunchImage.imageset/LaunchImage@3x.png | Bin 0 -> 68 bytes .../LaunchImage.imageset/README.md | 5 + .../Runner/Base.lproj/LaunchScreen.storyboard | 37 ++ .../ios/Runner/Base.lproj/Main.storyboard | 26 + persist_key_value/ios/Runner/Info.plist | 45 ++ .../ios/Runner/Runner-Bridging-Header.h | 1 + persist_key_value/lib/main.dart | 25 + persist_key_value/pubspec.yaml | 57 +++ persist_key_value/test/widget_test.dart | 0 67 files changed, 2229 insertions(+) create mode 100644 persist_key_value/.gitignore create mode 100644 persist_key_value/.idea/libraries/Dart_Packages.xml create mode 100644 persist_key_value/.idea/libraries/Dart_SDK.xml create mode 100644 persist_key_value/.idea/libraries/Flutter_Plugins.xml create mode 100644 persist_key_value/.idea/libraries/Flutter_for_Android.xml create mode 100644 persist_key_value/.idea/misc.xml create mode 100644 persist_key_value/.idea/modules.xml create mode 100644 persist_key_value/.idea/runConfigurations/main_dart.xml create mode 100644 persist_key_value/.idea/vcs.xml create mode 100644 persist_key_value/.idea/workspace.xml create mode 100644 persist_key_value/.metadata create mode 100644 persist_key_value/README.md create mode 100644 persist_key_value/android/.gitignore create mode 100644 persist_key_value/android/app/build.gradle create mode 100644 persist_key_value/android/app/src/main/AndroidManifest.xml create mode 100644 persist_key_value/android/app/src/main/kotlin/github/nisrulz/persistkeyvalue/MainActivity.kt create mode 100644 persist_key_value/android/app/src/main/res/drawable/launch_background.xml create mode 100644 persist_key_value/android/app/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 persist_key_value/android/app/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 persist_key_value/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 persist_key_value/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 persist_key_value/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 persist_key_value/android/app/src/main/res/values/styles.xml create mode 100644 persist_key_value/android/build.gradle create mode 100644 persist_key_value/android/gradle.properties create mode 100644 persist_key_value/android/gradle/wrapper/gradle-wrapper.jar create mode 100644 persist_key_value/android/gradle/wrapper/gradle-wrapper.properties create mode 100755 persist_key_value/android/gradlew create mode 100644 persist_key_value/android/gradlew.bat create mode 100644 persist_key_value/android/settings.gradle create mode 100644 persist_key_value/ios/.gitignore create mode 100644 persist_key_value/ios/Flutter/AppFrameworkInfo.plist create mode 100644 persist_key_value/ios/Flutter/Debug.xcconfig create mode 100644 persist_key_value/ios/Flutter/Release.xcconfig create mode 100644 persist_key_value/ios/Runner.xcodeproj/project.pbxproj create mode 100644 persist_key_value/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 persist_key_value/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme create mode 100644 persist_key_value/ios/Runner.xcworkspace/contents.xcworkspacedata create mode 100644 persist_key_value/ios/Runner/AppDelegate.swift create mode 100644 persist_key_value/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 persist_key_value/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png create mode 100644 persist_key_value/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png create mode 100644 persist_key_value/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png create mode 100644 persist_key_value/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png create mode 100644 persist_key_value/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png create mode 100644 persist_key_value/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png create mode 100644 persist_key_value/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png create mode 100644 persist_key_value/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png create mode 100644 persist_key_value/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png create mode 100644 persist_key_value/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png create mode 100644 persist_key_value/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png create mode 100644 persist_key_value/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png create mode 100644 persist_key_value/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png create mode 100644 persist_key_value/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png create mode 100644 persist_key_value/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png create mode 100644 persist_key_value/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json create mode 100644 persist_key_value/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png create mode 100644 persist_key_value/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png create mode 100644 persist_key_value/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png create mode 100644 persist_key_value/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md create mode 100644 persist_key_value/ios/Runner/Base.lproj/LaunchScreen.storyboard create mode 100644 persist_key_value/ios/Runner/Base.lproj/Main.storyboard create mode 100644 persist_key_value/ios/Runner/Info.plist create mode 100644 persist_key_value/ios/Runner/Runner-Bridging-Header.h create mode 100644 persist_key_value/lib/main.dart create mode 100644 persist_key_value/pubspec.yaml create mode 100644 persist_key_value/test/widget_test.dart diff --git a/persist_key_value/.gitignore b/persist_key_value/.gitignore new file mode 100644 index 0000000..dee655c --- /dev/null +++ b/persist_key_value/.gitignore @@ -0,0 +1,9 @@ +.DS_Store +.dart_tool/ + +.packages +.pub/ + +build/ + +.flutter-plugins diff --git a/persist_key_value/.idea/libraries/Dart_Packages.xml b/persist_key_value/.idea/libraries/Dart_Packages.xml new file mode 100644 index 0000000..bb6d23f --- /dev/null +++ b/persist_key_value/.idea/libraries/Dart_Packages.xml @@ -0,0 +1,436 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/persist_key_value/.idea/libraries/Dart_SDK.xml b/persist_key_value/.idea/libraries/Dart_SDK.xml new file mode 100644 index 0000000..8aaf077 --- /dev/null +++ b/persist_key_value/.idea/libraries/Dart_SDK.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/persist_key_value/.idea/libraries/Flutter_Plugins.xml b/persist_key_value/.idea/libraries/Flutter_Plugins.xml new file mode 100644 index 0000000..b0f6971 --- /dev/null +++ b/persist_key_value/.idea/libraries/Flutter_Plugins.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/persist_key_value/.idea/libraries/Flutter_for_Android.xml b/persist_key_value/.idea/libraries/Flutter_for_Android.xml new file mode 100644 index 0000000..6afec63 --- /dev/null +++ b/persist_key_value/.idea/libraries/Flutter_for_Android.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/persist_key_value/.idea/misc.xml b/persist_key_value/.idea/misc.xml new file mode 100644 index 0000000..4222c38 --- /dev/null +++ b/persist_key_value/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/persist_key_value/.idea/modules.xml b/persist_key_value/.idea/modules.xml new file mode 100644 index 0000000..840e8c2 --- /dev/null +++ b/persist_key_value/.idea/modules.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/persist_key_value/.idea/runConfigurations/main_dart.xml b/persist_key_value/.idea/runConfigurations/main_dart.xml new file mode 100644 index 0000000..aab7b5c --- /dev/null +++ b/persist_key_value/.idea/runConfigurations/main_dart.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/persist_key_value/.idea/vcs.xml b/persist_key_value/.idea/vcs.xml new file mode 100644 index 0000000..6c0b863 --- /dev/null +++ b/persist_key_value/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/persist_key_value/.idea/workspace.xml b/persist_key_value/.idea/workspace.xml new file mode 100644 index 0000000..0d1bb94 --- /dev/null +++ b/persist_key_value/.idea/workspace.xml @@ -0,0 +1,286 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +