diff --git a/star_wars/.gitignore b/star_wars/.gitignore new file mode 100644 index 00000000..ae1f1838 --- /dev/null +++ b/star_wars/.gitignore @@ -0,0 +1,37 @@ +# Miscellaneous +*.class +*.log +*.pyc +*.swp +.DS_Store +.atom/ +.buildlog/ +.history +.svn/ + +# IntelliJ related +*.iml +*.ipr +*.iws +.idea/ + +# The .vscode folder contains launch configuration and tasks you configure in +# VS Code which you may wish to be included in version control, so this line +# is commented out by default. +#.vscode/ + +# Flutter/Dart/Pub related +**/doc/api/ +.dart_tool/ +.flutter-plugins +.flutter-plugins-dependencies +.packages +.pub-cache/ +.pub/ +/build/ + +# Web related +lib/generated_plugin_registrant.dart + +# Exceptions to above rules. +!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages diff --git a/star_wars/.metadata b/star_wars/.metadata new file mode 100644 index 00000000..01d2dcb9 --- /dev/null +++ b/star_wars/.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: 0b8abb4724aa590dd0f429683339b1e045a1594d + channel: stable + +project_type: app diff --git a/star_wars/README.md b/star_wars/README.md new file mode 100644 index 00000000..34f3e560 --- /dev/null +++ b/star_wars/README.md @@ -0,0 +1,16 @@ +# starwars + +Desafio Android + +## 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/star_wars/android/.gitignore b/star_wars/android/.gitignore new file mode 100644 index 00000000..bc2100d8 --- /dev/null +++ b/star_wars/android/.gitignore @@ -0,0 +1,7 @@ +gradle-wrapper.jar +/.gradle +/captures/ +/gradlew +/gradlew.bat +/local.properties +GeneratedPluginRegistrant.java diff --git a/star_wars/android/app/build.gradle b/star_wars/android/app/build.gradle new file mode 100644 index 00000000..668dc2d9 --- /dev/null +++ b/star_wars/android/app/build.gradle @@ -0,0 +1,61 @@ +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 from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" + +android { + compileSdkVersion 28 + + lintOptions { + disable 'InvalidPackage' + } + + defaultConfig { + // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). + applicationId "com.example.starwars" + minSdkVersion 16 + targetSdkVersion 28 + versionCode flutterVersionCode.toInteger() + versionName flutterVersionName + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" + } + + 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 { + testImplementation 'junit:junit:4.12' + androidTestImplementation 'androidx.test:runner:1.1.1' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1' +} diff --git a/star_wars/android/app/src/debug/AndroidManifest.xml b/star_wars/android/app/src/debug/AndroidManifest.xml new file mode 100644 index 00000000..94f18347 --- /dev/null +++ b/star_wars/android/app/src/debug/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + diff --git a/star_wars/android/app/src/main/AndroidManifest.xml b/star_wars/android/app/src/main/AndroidManifest.xml new file mode 100644 index 00000000..a64162aa --- /dev/null +++ b/star_wars/android/app/src/main/AndroidManifest.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + diff --git a/star_wars/android/app/src/main/java/com/example/starwars/MainActivity.java b/star_wars/android/app/src/main/java/com/example/starwars/MainActivity.java new file mode 100644 index 00000000..ebe7cf7d --- /dev/null +++ b/star_wars/android/app/src/main/java/com/example/starwars/MainActivity.java @@ -0,0 +1,13 @@ +package com.example.starwars; + +import androidx.annotation.NonNull; +import io.flutter.embedding.android.FlutterActivity; +import io.flutter.embedding.engine.FlutterEngine; +import io.flutter.plugins.GeneratedPluginRegistrant; + +public class MainActivity extends FlutterActivity { + @Override + public void configureFlutterEngine(@NonNull FlutterEngine flutterEngine) { + GeneratedPluginRegistrant.registerWith(flutterEngine); + } +} diff --git a/star_wars/android/app/src/main/res/drawable/launch_background.xml b/star_wars/android/app/src/main/res/drawable/launch_background.xml new file mode 100644 index 00000000..304732f8 --- /dev/null +++ b/star_wars/android/app/src/main/res/drawable/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/star_wars/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/star_wars/android/app/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 00000000..db77bb4b Binary files /dev/null and b/star_wars/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/star_wars/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/star_wars/android/app/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 00000000..17987b79 Binary files /dev/null and b/star_wars/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/star_wars/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/star_wars/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 00000000..09d43914 Binary files /dev/null and b/star_wars/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/star_wars/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/star_wars/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 00000000..d5f1c8d3 Binary files /dev/null and b/star_wars/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/star_wars/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/star_wars/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 00000000..4d6372ee Binary files /dev/null and b/star_wars/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/star_wars/android/app/src/main/res/values/styles.xml b/star_wars/android/app/src/main/res/values/styles.xml new file mode 100644 index 00000000..00fa4417 --- /dev/null +++ b/star_wars/android/app/src/main/res/values/styles.xml @@ -0,0 +1,8 @@ + + + + diff --git a/star_wars/android/app/src/profile/AndroidManifest.xml b/star_wars/android/app/src/profile/AndroidManifest.xml new file mode 100644 index 00000000..94f18347 --- /dev/null +++ b/star_wars/android/app/src/profile/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + diff --git a/star_wars/android/build.gradle b/star_wars/android/build.gradle new file mode 100644 index 00000000..e0d7ae2c --- /dev/null +++ b/star_wars/android/build.gradle @@ -0,0 +1,29 @@ +buildscript { + repositories { + google() + jcenter() + } + + dependencies { + classpath 'com.android.tools.build:gradle:3.5.0' + } +} + +allprojects { + repositories { + google() + jcenter() + } +} + +rootProject.buildDir = '../build' +subprojects { + project.buildDir = "${rootProject.buildDir}/${project.name}" +} +subprojects { + project.evaluationDependsOn(':app') +} + +task clean(type: Delete) { + delete rootProject.buildDir +} diff --git a/star_wars/android/gradle.properties b/star_wars/android/gradle.properties new file mode 100644 index 00000000..38c8d454 --- /dev/null +++ b/star_wars/android/gradle.properties @@ -0,0 +1,4 @@ +org.gradle.jvmargs=-Xmx1536M +android.enableR8=true +android.useAndroidX=true +android.enableJetifier=true diff --git a/star_wars/android/gradle/wrapper/gradle-wrapper.properties b/star_wars/android/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 00000000..296b146b --- /dev/null +++ b/star_wars/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-5.6.2-all.zip diff --git a/star_wars/android/settings.gradle b/star_wars/android/settings.gradle new file mode 100644 index 00000000..5a2f14fb --- /dev/null +++ b/star_wars/android/settings.gradle @@ -0,0 +1,15 @@ +include ':app' + +def flutterProjectRoot = rootProject.projectDir.parentFile.toPath() + +def plugins = new Properties() +def pluginsFile = new File(flutterProjectRoot.toFile(), '.flutter-plugins') +if (pluginsFile.exists()) { + pluginsFile.withReader('UTF-8') { reader -> plugins.load(reader) } +} + +plugins.each { name, path -> + def pluginDirectory = flutterProjectRoot.resolve(path).resolve('android').toFile() + include ":$name" + project(":$name").projectDir = pluginDirectory +} diff --git a/star_wars/ios/.gitignore b/star_wars/ios/.gitignore new file mode 100644 index 00000000..e96ef602 --- /dev/null +++ b/star_wars/ios/.gitignore @@ -0,0 +1,32 @@ +*.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/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/star_wars/ios/Flutter/AppFrameworkInfo.plist b/star_wars/ios/Flutter/AppFrameworkInfo.plist new file mode 100644 index 00000000..6b4c0f78 --- /dev/null +++ b/star_wars/ios/Flutter/AppFrameworkInfo.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + App + CFBundleIdentifier + io.flutter.flutter.app + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + App + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1.0 + MinimumOSVersion + 8.0 + + diff --git a/star_wars/ios/Flutter/Debug.xcconfig b/star_wars/ios/Flutter/Debug.xcconfig new file mode 100644 index 00000000..592ceee8 --- /dev/null +++ b/star_wars/ios/Flutter/Debug.xcconfig @@ -0,0 +1 @@ +#include "Generated.xcconfig" diff --git a/star_wars/ios/Flutter/Release.xcconfig b/star_wars/ios/Flutter/Release.xcconfig new file mode 100644 index 00000000..592ceee8 --- /dev/null +++ b/star_wars/ios/Flutter/Release.xcconfig @@ -0,0 +1 @@ +#include "Generated.xcconfig" diff --git a/star_wars/ios/Runner.xcodeproj/project.pbxproj b/star_wars/ios/Runner.xcodeproj/project.pbxproj new file mode 100644 index 00000000..d8f05a51 --- /dev/null +++ b/star_wars/ios/Runner.xcodeproj/project.pbxproj @@ -0,0 +1,511 @@ +// !$*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 */; }; + 3B80C3941E831B6300D905FE /* App.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; }; + 3B80C3951E831B6300D905FE /* App.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; + 9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; }; + 9705A1C71CF904A300538489 /* Flutter.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; + 978B8F6F1D3862AE00F588F7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */; }; + 97C146F31CF9000F007C117D /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 97C146F21CF9000F007C117D /* main.m */; }; + 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 = ( + 3B80C3951E831B6300D905FE /* App.framework in Embed Frameworks */, + 9705A1C71CF904A300538489 /* Flutter.framework in Embed Frameworks */, + ); + 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 = ""; }; + 3B80C3931E831B6300D905FE /* App.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = App.framework; path = Flutter/App.framework; sourceTree = ""; }; + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; + 7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; + 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; 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 = ""; }; + 9740EEBA1CF902C7004384FC /* Flutter.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Flutter.framework; path = Flutter/Flutter.framework; sourceTree = ""; }; + 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 97C146F21CF9000F007C117D /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; + 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 = ( + 9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */, + 3B80C3941E831B6300D905FE /* App.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 9740EEB11CF90186004384FC /* Flutter */ = { + isa = PBXGroup; + children = ( + 3B80C3931E831B6300D905FE /* App.framework */, + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, + 9740EEBA1CF902C7004384FC /* Flutter.framework */, + 9740EEB21CF90195004384FC /* Debug.xcconfig */, + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, + 9740EEB31CF90195004384FC /* Generated.xcconfig */, + ); + name = Flutter; + sourceTree = ""; + }; + 97C146E51CF9000F007C117D = { + isa = PBXGroup; + children = ( + 9740EEB11CF90186004384FC /* Flutter */, + 97C146F01CF9000F007C117D /* Runner */, + 97C146EF1CF9000F007C117D /* Products */, + CF3B75C9A7D2FA2A4C99F110 /* Frameworks */, + ); + sourceTree = ""; + }; + 97C146EF1CF9000F007C117D /* Products */ = { + isa = PBXGroup; + children = ( + 97C146EE1CF9000F007C117D /* Runner.app */, + ); + name = Products; + sourceTree = ""; + }; + 97C146F01CF9000F007C117D /* Runner */ = { + isa = PBXGroup; + children = ( + 7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */, + 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */, + 97C146FA1CF9000F007C117D /* Main.storyboard */, + 97C146FD1CF9000F007C117D /* Assets.xcassets */, + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, + 97C147021CF9000F007C117D /* Info.plist */, + 97C146F11CF9000F007C117D /* Supporting Files */, + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, + ); + path = Runner; + sourceTree = ""; + }; + 97C146F11CF9000F007C117D /* Supporting Files */ = { + isa = PBXGroup; + children = ( + 97C146F21CF9000F007C117D /* main.m */, + ); + name = "Supporting Files"; + 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 = "The Chromium Authors"; + TargetAttributes = { + 97C146ED1CF9000F007C117D = { + CreatedOnToolsVersion = 7.3.1; + }; + }; + }; + buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; + compatibilityVersion = "Xcode 3.2"; + 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\" 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 = ( + 978B8F6F1D3862AE00F588F7 /* AppDelegate.m in Sources */, + 97C146F31CF9000F007C117D /* main.m 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; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + 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 = 8.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; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + ENABLE_BITCODE = NO; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Flutter", + ); + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Flutter", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.example.starwars; + PRODUCT_NAME = "$(TARGET_NAME)"; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Profile; + }; + 97C147031CF9000F007C117D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; + 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 = 8.0; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 97C147041CF9000F007C117D /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + 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 = 8.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 97C147061CF9000F007C117D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + ENABLE_BITCODE = NO; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Flutter", + ); + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Flutter", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.example.starwars; + PRODUCT_NAME = "$(TARGET_NAME)"; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Debug; + }; + 97C147071CF9000F007C117D /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + ENABLE_BITCODE = NO; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Flutter", + ); + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Flutter", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.example.starwars; + PRODUCT_NAME = "$(TARGET_NAME)"; + 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/star_wars/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/star_wars/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 00000000..1d526a16 --- /dev/null +++ b/star_wars/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/star_wars/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/star_wars/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme new file mode 100644 index 00000000..a28140cf --- /dev/null +++ b/star_wars/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/star_wars/ios/Runner.xcworkspace/contents.xcworkspacedata b/star_wars/ios/Runner.xcworkspace/contents.xcworkspacedata new file mode 100644 index 00000000..1d526a16 --- /dev/null +++ b/star_wars/ios/Runner.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/star_wars/ios/Runner/AppDelegate.h b/star_wars/ios/Runner/AppDelegate.h new file mode 100644 index 00000000..36e21bbf --- /dev/null +++ b/star_wars/ios/Runner/AppDelegate.h @@ -0,0 +1,6 @@ +#import +#import + +@interface AppDelegate : FlutterAppDelegate + +@end diff --git a/star_wars/ios/Runner/AppDelegate.m b/star_wars/ios/Runner/AppDelegate.m new file mode 100644 index 00000000..70e83933 --- /dev/null +++ b/star_wars/ios/Runner/AppDelegate.m @@ -0,0 +1,13 @@ +#import "AppDelegate.h" +#import "GeneratedPluginRegistrant.h" + +@implementation AppDelegate + +- (BOOL)application:(UIApplication *)application + didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { + [GeneratedPluginRegistrant registerWithRegistry:self]; + // Override point for customization after application launch. + return [super application:application didFinishLaunchingWithOptions:launchOptions]; +} + +@end diff --git a/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 00000000..d36b1fab --- /dev/null +++ b/star_wars/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/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png new file mode 100644 index 00000000..dc9ada47 Binary files /dev/null and b/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png differ diff --git a/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png new file mode 100644 index 00000000..28c6bf03 Binary files /dev/null and b/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png differ diff --git a/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png new file mode 100644 index 00000000..2ccbfd96 Binary files /dev/null and b/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png differ diff --git a/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png new file mode 100644 index 00000000..f091b6b0 Binary files /dev/null and b/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png differ diff --git a/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png new file mode 100644 index 00000000..4cde1211 Binary files /dev/null and b/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png differ diff --git a/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png new file mode 100644 index 00000000..d0ef06e7 Binary files /dev/null and b/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png differ diff --git a/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png new file mode 100644 index 00000000..dcdc2306 Binary files /dev/null and b/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png differ diff --git a/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png new file mode 100644 index 00000000..2ccbfd96 Binary files /dev/null and b/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png differ diff --git a/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png new file mode 100644 index 00000000..c8f9ed8f Binary files /dev/null and b/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png differ diff --git a/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png new file mode 100644 index 00000000..a6d6b860 Binary files /dev/null and b/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png differ diff --git a/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png new file mode 100644 index 00000000..a6d6b860 Binary files /dev/null and b/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png differ diff --git a/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png new file mode 100644 index 00000000..75b2d164 Binary files /dev/null and b/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png differ diff --git a/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png new file mode 100644 index 00000000..c4df70d3 Binary files /dev/null and b/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png differ diff --git a/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png new file mode 100644 index 00000000..6a84f41e Binary files /dev/null and b/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png differ diff --git a/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png new file mode 100644 index 00000000..d0e1f585 Binary files /dev/null and b/star_wars/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png differ diff --git a/star_wars/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/star_wars/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json new file mode 100644 index 00000000..0bedcf2f --- /dev/null +++ b/star_wars/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/star_wars/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/star_wars/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png new file mode 100644 index 00000000..9da19eac Binary files /dev/null and b/star_wars/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png differ diff --git a/star_wars/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/star_wars/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png new file mode 100644 index 00000000..9da19eac Binary files /dev/null and b/star_wars/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png differ diff --git a/star_wars/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/star_wars/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png new file mode 100644 index 00000000..9da19eac Binary files /dev/null and b/star_wars/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png differ diff --git a/star_wars/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/star_wars/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md new file mode 100644 index 00000000..89c2725b --- /dev/null +++ b/star_wars/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/star_wars/ios/Runner/Base.lproj/LaunchScreen.storyboard b/star_wars/ios/Runner/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 00000000..f2e259c7 --- /dev/null +++ b/star_wars/ios/Runner/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/star_wars/ios/Runner/Base.lproj/Main.storyboard b/star_wars/ios/Runner/Base.lproj/Main.storyboard new file mode 100644 index 00000000..f3c28516 --- /dev/null +++ b/star_wars/ios/Runner/Base.lproj/Main.storyboard @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/star_wars/ios/Runner/Info.plist b/star_wars/ios/Runner/Info.plist new file mode 100644 index 00000000..cae0cbf2 --- /dev/null +++ b/star_wars/ios/Runner/Info.plist @@ -0,0 +1,45 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + starwars + 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/star_wars/ios/Runner/main.m b/star_wars/ios/Runner/main.m new file mode 100644 index 00000000..dff6597e --- /dev/null +++ b/star_wars/ios/Runner/main.m @@ -0,0 +1,9 @@ +#import +#import +#import "AppDelegate.h" + +int main(int argc, char* argv[]) { + @autoreleasepool { + return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); + } +} diff --git a/star_wars/lib/controller/favorite_controller.dart b/star_wars/lib/controller/favorite_controller.dart new file mode 100644 index 00000000..c2559208 --- /dev/null +++ b/star_wars/lib/controller/favorite_controller.dart @@ -0,0 +1,29 @@ +import 'dart:async'; + +import 'package:bloc_pattern/bloc_pattern.dart'; +import 'package:rxdart/rxdart.dart'; + +import 'package:starwars/model/person_model.dart'; + +class FavoriteController implements BlocBase { + + PersonDatabase datab = PersonDatabase(); + + BehaviorSubject> _favController = + BehaviorSubject>(); + Stream> get outPutData => _favController.stream; + Sink> get inPutData => _favController.sink; + + getDbFavorites() async { + List people = await datab.favoritesPersons(); + inPutData.add(people); + } + + + + @override + void dispose() { + _favController.close(); + } + +} \ No newline at end of file diff --git a/star_wars/lib/controller/person_data_controller.dart b/star_wars/lib/controller/person_data_controller.dart new file mode 100644 index 00000000..cf46d965 --- /dev/null +++ b/star_wars/lib/controller/person_data_controller.dart @@ -0,0 +1,73 @@ +import 'dart:convert'; + +import 'package:bloc_pattern/bloc_pattern.dart'; +import 'package:flutter/services.dart'; +import 'package:rxdart/rxdart.dart'; +import 'package:starwars/helper/aux_test_connexion.dart'; +import 'package:starwars/model/favorite_model.dart'; +import 'package:starwars/model/person_model.dart'; +import 'package:http/http.dart' as http; + +class PersonDataController implements BlocBase { + BehaviorSubject> _dataController = + BehaviorSubject>(); + + Stream> get outData => _dataController.stream; + + Sink> get inData => _dataController.sink; + + PersonDatabase datab = PersonDatabase(); + + Future getData() async { + bool connected = await AuxTestConnexion("https://swapi.co/").connexion(); + if (connected) { + List people = List(); + for (int id = 1; id <= 87; id++) { + http.Response response = + await http.get("https://swapi.co/api/people/$id/"); + if (response.statusCode == 200) { + var decoded = await _getPersonModified(response); + Person character = Person.fromJson(decoded, identifier: id); + character = await datab.savePerson(character); + FavoriteModel().favOnline(character.id); // Para enviar os favoritos quando ficar online + people.add(character); + inData.add(people); + } + } + } else { + List people = await datab.getAllPersons(); + inData.add(people); + } + } + + Future updateList(String id) async { + String message = await FavoriteModel().setFav(id); + List people = await datab.getAllPersons(); + inData.add(people); + return message; + } + + _getPersonModified(http.Response resp) async { + var decoded = json.decode(resp.body); //Para atribuir nome ao planeta natal + http.Response name = await http.get(decoded["homeworld"]); + var nameDecoded = json.decode(name.body); + decoded["homeworld"] = nameDecoded["name"]; + + List species = decoded["species"]; + + decoded["species"] = ""; + for (int index = 0; index < species.length; index++) { + // Para atribuir nome das especies + name = await http.get(species[index]); + nameDecoded = json.decode(name.body); + decoded["species"] = "${decoded["species"]} ${nameDecoded["name"]} \n"; + } + + return decoded; + } + + @override + void dispose() { + _dataController.close(); + } +} diff --git a/star_wars/lib/delegate/search_person.dart b/star_wars/lib/delegate/search_person.dart new file mode 100644 index 00000000..0249ca86 --- /dev/null +++ b/star_wars/lib/delegate/search_person.dart @@ -0,0 +1,83 @@ +import 'package:flutter/material.dart'; +import 'package:starwars/model/person_model.dart'; +import 'package:starwars/view/favorite_tile.dart'; + +class SearchPerson extends SearchDelegate { + @override + List buildActions(BuildContext context) { + return [ + IconButton( + icon: Icon(Icons.clear), + onPressed: () { + query = ""; + }, + ) + ]; + } + + @override + Widget buildLeading(BuildContext context) { + return IconButton( + icon: AnimatedIcon( + icon: AnimatedIcons.menu_arrow, progress: transitionAnimation), + onPressed: () { + close(context, null); + }, + ); + } + + @override + Widget buildResults(BuildContext context) { + if(query.isEmpty) + return Container(); + else + return FutureBuilder>( + future: getName(query), + builder: (context, snapshot){ + if(!snapshot.hasData){ + return Center( + child: CircularProgressIndicator(), + ); + } else { + return ListView.builder( + itemBuilder: (context, index) { + return FavoriteTile(snapshot.data[index]); + }, + itemCount: snapshot.data.length, + ); + } + }, + ); + } + + @override + Widget buildSuggestions(BuildContext context) { + if(query.isEmpty) + return Container(); + else + return FutureBuilder>( + future: getName(query), + builder: (context, snapshot){ + if(!snapshot.hasData){ + return Center( + child: CircularProgressIndicator(), + ); + } else { + return ListView.builder( + itemBuilder: (context, index) { + return FavoriteTile(snapshot.data[index]); + }, + itemCount: snapshot.data.length, + ); + } + }, + ); +} +} + + +Future> getName(String name) async { + PersonDatabase datab = PersonDatabase(); + List people = await datab.searchPersons(name); + return people; +} \ No newline at end of file diff --git a/star_wars/lib/helper/aux_test_connexion.dart b/star_wars/lib/helper/aux_test_connexion.dart new file mode 100644 index 00000000..1bbcdae1 --- /dev/null +++ b/star_wars/lib/helper/aux_test_connexion.dart @@ -0,0 +1,20 @@ +import 'package:http/http.dart' as http; + +class AuxTestConnexion { + final String _site; + + AuxTestConnexion(this._site); + + Future connexion() async { + bool connected = true; + try { + http.Response conecTest = await http.get(_site); + if (conecTest.statusCode != 200) { + connected = false; + } + } catch (e) { + connected = false; + } + return connected; + } +} diff --git a/star_wars/lib/main.dart b/star_wars/lib/main.dart new file mode 100644 index 00000000..ee4406e7 --- /dev/null +++ b/star_wars/lib/main.dart @@ -0,0 +1,18 @@ +import 'package:bloc_pattern/bloc_pattern.dart'; +import 'package:flutter/material.dart'; +import 'package:starwars/controller/favorite_controller.dart'; +import 'package:starwars/controller/person_data_controller.dart'; +import 'package:starwars/view/home.dart'; + +void main() { + runApp(BlocProvider( + bloc: PersonDataController(), + child: BlocProvider( + bloc: FavoriteController(), + child: MaterialApp( + title: "Star Wars Wiki", + debugShowCheckedModeBanner: false, + home: Home(), + ), + ))); +} diff --git a/star_wars/lib/model/favorite_model.dart b/star_wars/lib/model/favorite_model.dart new file mode 100644 index 00000000..c1e3541d --- /dev/null +++ b/star_wars/lib/model/favorite_model.dart @@ -0,0 +1,61 @@ +import 'dart:convert'; + +import 'package:starwars/model/person_model.dart'; +import 'package:http/http.dart' as http; + +class FavoriteModel { + Future setFav(String id) async { + PersonDatabase datab = PersonDatabase(); + Person person = await datab.getPerson(id); + Map tempPerson = person.toJson(); + String message; + + if (tempPerson["favorito"] == null || tempPerson["favorito"] == "0") { + tempPerson["favorito"] = "1"; + + try { + http.Response response = await http.post( + "http://private-782d3-starwarsfavorites.apiary-mock.com/favorite/$id"); + if (response.statusCode == 201) { + tempPerson["enviado"] = "1"; + message = jsonDecode(response.body)["message"]; + } else { + tempPerson["enviado"] = "0"; + message = "Falha ao enviar para o servidor"; + } + } catch (e) { + tempPerson["enviado"] = "0"; + message = "Falha ao enviar para o servidor"; + } + } else { + tempPerson["favorito"] = "0"; + tempPerson["enviado"] = "0"; + message = "Removido dos Favoritos"; + } + person = Person.fromJson(tempPerson); + await datab.updatePerson(person); + return message; + } + + + Future favOnline(String id) async { + PersonDatabase datab = PersonDatabase(); + Person person = await datab.getPerson(id); + Map tempPerson = person.toJson(); + if(tempPerson["favorito"] == "1" && tempPerson["enviado"] == "0"){ + + try { + http.Response response = await http.post( + "http://private-782d3-starwarsfavorites.apiary-mock.com/favorite/$id"); + if (response.statusCode == 201) { + tempPerson["enviado"] = "1"; + } else { + tempPerson["enviado"] = "0"; + } + } catch (e) { + tempPerson["enviado"] = "0"; + } + person = Person.fromJson(tempPerson); + await datab.updatePerson(person); + }} +} diff --git a/star_wars/lib/model/person_model.dart b/star_wars/lib/model/person_model.dart new file mode 100644 index 00000000..a3a0721b --- /dev/null +++ b/star_wars/lib/model/person_model.dart @@ -0,0 +1,213 @@ +import 'package:path/path.dart'; +import 'package:sqflite/sqflite.dart'; + +final String personTable = "personTable"; +final String idString = "id"; +final String nameString = "name"; +final String massString = "mass"; +final String heightString = "height"; +final String hairString = "hair_color"; +final String skinString = "skin_color"; +final String eyeString = "eye_color"; +final String birthString = "birth_year"; +final String worldString = "homeworld"; +final String specieString = "species"; +final String genderString = "gender"; +final String sentString = "enviado"; +final String favString = "favorito"; + +class Person { + final String id; + final String name; + final String height; + final String mass; + final String hairColor; + final String skinColor; + final String eyeColor; + final String birthYear; + final String gender; + final String nomePlaneta; + final String nomeEspecie; + final String sent; + final String favorite; + + Person({this.id, + this.name, + this.height, + this.mass, + this.hairColor, + this.skinColor, + this.eyeColor, + this.birthYear, + this.gender, + this.nomePlaneta, + this.nomeEspecie, + this.sent, + this.favorite}); + + factory Person.fromJson(Map json,{int identifier}) { + if(identifier == null) { + return Person( + id: json[idString], + name: json[nameString], + mass: json[massString], + height: json[heightString], + hairColor: json[hairString], + skinColor: json[skinString], + eyeColor: json[eyeString], + birthYear: json[birthString], + nomePlaneta: json[worldString], + nomeEspecie: json[specieString], + gender: json[genderString], + sent: json[sentString], + favorite: json[favString]); + }else{ + return Person( + id: identifier.toString(), + name: json[nameString], + mass: json[massString], + height: json[heightString], + hairColor: json[hairString], + skinColor: json[skinString], + eyeColor: json[eyeString], + birthYear: json[birthString], + nomePlaneta: json[worldString], + nomeEspecie: json[specieString], + gender: json[genderString], + sent: json[sentString], + favorite: json[favString]); + } + } + + Map toJson() { + return { + idString: id, + nameString: name, + massString: mass, + heightString: height, + hairString: hairColor, + skinString: skinColor, + eyeString: eyeColor, + birthString: birthYear, + worldString: nomePlaneta, + specieString: nomeEspecie, + genderString: gender, + sentString: sent, + favString: favorite + }; + } +} + +class PersonDatabase { + static final PersonDatabase _instance = PersonDatabase.internal(); + + factory PersonDatabase() => _instance; + + PersonDatabase.internal(); + + Database _db; + + Future get db async { + if (_db != null) { + return _db; + } else { + _db = await initDb(); + return _db; + } + } + + Future initDb() async { + final databasepath = await getDatabasesPath(); + final path = join(databasepath, "person.db"); + + return await openDatabase(path, version: 1, + onCreate: (Database db, int neweVersion) async { + await db.execute( + "CREATE TABLE $personTable($idString TEXT PRIMARY KEY, $nameString TEXT, $massString TEXT, $heightString TEXT, $hairString TEXT, $skinString TEXT, $eyeString TEXT, $birthString TEXT, $worldString TEXT, $specieString TEXT, $genderString TEXT, $sentString TEXT, $favString TEXT)"); + }); + } + + Future savePerson(Person person) async { + Person per = await getPerson(person.id); + if(per == null){ + Database dbPerson = await db; + await dbPerson.insert(personTable, person.toJson()); + }else{ + return per; + } + return person; + } + + Future getPerson(String id) async { + Database dbPerson = await db; + List maps = await dbPerson.query(personTable, + columns: [ + idString, + nameString, + massString, + heightString, + hairString, + skinString, + eyeString, + birthString, + worldString, + specieString, + genderString, + sentString, + favString + ], + where: "$idString = ?", + whereArgs: [id]); + if (maps.length > 0) { + return Person.fromJson(maps.first); + } else { + return null; + } + } + + Future updatePerson(Person person) async { + Database dbPerson = await db; + return await dbPerson.update(personTable, + person.toJson(), + where: "$idString = ?", + whereArgs: [person.id]); + } + + Future getAllPersons() async { + Database dbPerson = await db; + int count = 1; + List listMap = await dbPerson.rawQuery("SELECT * FROM $personTable"); + List listPerson = List(); + for(Map m in listMap){ + count++; + listPerson.add(Person.fromJson(m)); + } + return listPerson; + } + + Future favoritesPersons() async { + Database dbPerson = await db; + List listMap = await dbPerson.rawQuery("SELECT * FROM $personTable WHERE favorito = 1"); + List listPerson = List(); + for(Map m in listMap){ + listPerson.add(Person.fromJson(m)); + } + return listPerson; + } + + Future searchPersons(String name) async { + Database dbPerson = await db; + List listMap = await dbPerson.rawQuery("SELECT * FROM $personTable WHERE name LIKE '$name%'"); + List listPerson = List(); + for(Map m in listMap){ + listPerson.add(Person.fromJson(m)); + } + return listPerson; + } + + Future close() async { + Database dbPerson = await db; + dbPerson.close(); + } + +} diff --git a/star_wars/lib/view/favorite_tile.dart b/star_wars/lib/view/favorite_tile.dart new file mode 100644 index 00000000..9d2e4416 --- /dev/null +++ b/star_wars/lib/view/favorite_tile.dart @@ -0,0 +1,50 @@ + +import 'package:bloc_pattern/bloc_pattern.dart'; +import 'package:flutter/cupertino.dart'; +import 'package:flutter/material.dart'; +import 'package:flutter/painting.dart'; +import 'package:flutter/widgets.dart'; +import 'package:starwars/controller/favorite_controller.dart'; +import 'package:starwars/controller/person_data_controller.dart'; +import 'package:starwars/model/person_model.dart'; +import 'package:starwars/view/person_view.dart'; + +class FavoriteTile extends StatelessWidget { + final Person person; + + FavoriteTile(this.person); + + + @override + Widget build(BuildContext context) { + + return Container( + padding: EdgeInsets.symmetric(horizontal: 5), + child: GestureDetector( + onTap: () { + Navigator.push(context, MaterialPageRoute( + builder: (context) => PersonView(person) + )); + }, + child: Card( + elevation: 10, + child: Padding( + padding: EdgeInsets.fromLTRB(10, 10, 0, 10), + child: Container( + child: + Column( + crossAxisAlignment: CrossAxisAlignment.center, + children: [ + Text("Nome: ${person.name}"), + Text("Altura: ${person.height}"), + Text("Gênero: ${person.gender}"), + Text("Peso: ${person.mass}") + ]), + + ), + ), + ), + ), + ); + } +} diff --git a/star_wars/lib/view/favorites_view.dart b/star_wars/lib/view/favorites_view.dart new file mode 100644 index 00000000..1681fbdb --- /dev/null +++ b/star_wars/lib/view/favorites_view.dart @@ -0,0 +1,41 @@ +import 'package:bloc_pattern/bloc_pattern.dart'; +import 'package:flutter/material.dart'; +import 'package:flutter/widgets.dart'; +import 'package:starwars/controller/favorite_controller.dart'; +import 'package:starwars/view/favorite_tile.dart'; + +class Favorites extends StatelessWidget { + @override + Widget build(BuildContext context) { + final FavoriteController getData = + BlocProvider.of(context); + + getData.getDbFavorites(); + + return Scaffold( + appBar: AppBar( + title: Text("Favoritos"), + backgroundColor: Colors.black38, + centerTitle: true, + actions: [ + ], + ), + body: StreamBuilder( + stream: BlocProvider.of(context).outPutData, + builder: (context, snapshot) { + if (snapshot.hasData) + return ListView.builder( + itemBuilder: (context, index) { + return FavoriteTile(snapshot.data[index]); + }, + itemCount: snapshot.data.length, + ); + else + return Container( + ); + }, + ), + backgroundColor: Colors.white, + ); + } +} \ No newline at end of file diff --git a/star_wars/lib/view/home.dart b/star_wars/lib/view/home.dart new file mode 100644 index 00000000..e43c29af --- /dev/null +++ b/star_wars/lib/view/home.dart @@ -0,0 +1,65 @@ +import 'package:bloc_pattern/bloc_pattern.dart'; +import 'package:flutter/material.dart'; +import 'package:flutter/widgets.dart'; +import 'package:starwars/controller/person_data_controller.dart'; +import 'package:starwars/delegate/search_person.dart'; +import 'package:starwars/view/favorites_view.dart'; +import 'package:starwars/view/person_tile.dart'; + +class Home extends StatelessWidget { + @override + Widget build(BuildContext context) { + final PersonDataController getData = + BlocProvider.of(context); + + getData.getData(); + + return Scaffold( + appBar: AppBar( + title: Text("Star Wars Wiki"), + backgroundColor: Colors.black38, + centerTitle: true, + actions: [ + IconButton( + icon: Icon( + Icons.star, + color: Colors.white, + ), + onPressed: () { + Navigator.push(context, MaterialPageRoute( + builder: (context) => Favorites() + )); + }, + ), + IconButton( + icon: Icon( + Icons.search, + color: Colors.white, + ), + onPressed: () { + showSearch(context: context, delegate: SearchPerson()); + }, + ) + ], + ), + body: StreamBuilder( + stream: BlocProvider.of(context).outData, + builder: (context, snapshot) { + if (snapshot.hasData) + return ListView.builder( + itemBuilder: (context, index) { + return PersonTile(snapshot.data[index]); + }, + itemCount: snapshot.data.length, + ); + else + return Center( + child: CircularProgressIndicator( + ), + ); + }, + ), + backgroundColor: Colors.white, + ); + } +} \ No newline at end of file diff --git a/star_wars/lib/view/person_tile.dart b/star_wars/lib/view/person_tile.dart new file mode 100644 index 00000000..21bd4bb2 --- /dev/null +++ b/star_wars/lib/view/person_tile.dart @@ -0,0 +1,66 @@ + +import 'package:bloc_pattern/bloc_pattern.dart'; +import 'package:flutter/cupertino.dart'; +import 'package:flutter/material.dart'; +import 'package:flutter/painting.dart'; +import 'package:flutter/widgets.dart'; +import 'package:starwars/controller/favorite_controller.dart'; +import 'package:starwars/controller/person_data_controller.dart'; +import 'package:starwars/model/person_model.dart'; +import 'package:starwars/view/person_view.dart'; + +class PersonTile extends StatelessWidget { + final Person person; + + PersonTile(this.person); + + + @override + Widget build(BuildContext context) { + final PersonDataController getData = + BlocProvider.of(context); + + return Container( + padding: EdgeInsets.symmetric(horizontal: 5), + child: GestureDetector( + onTap: () { + Navigator.push(context, MaterialPageRoute( + builder: (context) => PersonView(person) + )); + }, + child: Card( + elevation: 10, + child: Padding( + padding: EdgeInsets.fromLTRB(10, 10, 0, 10), + child: Container( + child: Row( + children: [ + Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text("Nome: ${person.name}"), + Text("Altura: ${person.height}"), + Text("Gênero: ${person.gender}"), + Text("Peso: ${person.mass}") + ]), + Spacer(), + IconButton( + icon: Icon( + person.favorite == "1" ? Icons.star:Icons.star_border, + ), + onPressed: () async { + final snackbar = SnackBar( + content: Text(await getData.updateList(person.id),textAlign: TextAlign.center), + duration: Duration(seconds: 3), + ); + Scaffold.of(context).showSnackBar(snackbar); + }, + ) + ], + )), + ), + ), + ), + ); + } +} diff --git a/star_wars/lib/view/person_view.dart b/star_wars/lib/view/person_view.dart new file mode 100644 index 00000000..53486eb4 --- /dev/null +++ b/star_wars/lib/view/person_view.dart @@ -0,0 +1,96 @@ +import 'package:bloc_pattern/bloc_pattern.dart'; +import 'package:flutter/material.dart'; +import 'package:starwars/controller/person_data_controller.dart'; +import 'package:starwars/model/person_model.dart'; + +class PersonView extends StatefulWidget { + final Person person; + + PersonView(this.person); + + @override + _PersonViewState createState() => _PersonViewState(); +} + +class _PersonViewState extends State { + Person _person; + String _fav; + + @override + void initState() { + super.initState(); + _person = widget.person; + _fav = _person.favorite; + } + + @override + Widget build(BuildContext context) { + final PersonDataController getData = + BlocProvider.of(context); + return StreamBuilder( + stream: BlocProvider.of(context).outData, + builder: (context, snapshot) { + if (snapshot.hasData) { + return Scaffold( + appBar: PreferredSize( + preferredSize: Size.fromHeight(56), + child: Builder( + builder: (context) => AppBar( + title: Text("Personagem"), + backgroundColor: Colors.black38, + actions: [ + IconButton( + icon: Icon( + _fav == "1" ? Icons.star : Icons.star_border, + ), + onPressed: () async { + final snackbar = SnackBar( + content: Text(await getData.updateList(_person.id),textAlign: TextAlign.center), + duration: Duration(seconds: 3), + ); + Scaffold.of(context).showSnackBar(snackbar); + if (_fav == "1") { + _fav = "0"; + } else { + _fav = "1"; + } + }) + ], + ), + ), + ), + + body: Padding( + padding: EdgeInsets.only(left: 10.0), + child: ListView( + children: [ + Text("Name: ${_person.name}", + style: TextStyle(fontSize: 20)), + Text("Height: ${_person.height}", + style: TextStyle(fontSize: 20)), + Text("Mass: ${_person.mass}", + style: TextStyle(fontSize: 20)), + Text("Hair_color: ${_person.hairColor}", + style: TextStyle(fontSize: 20)), + Text("Skin_color: ${_person.skinColor}", + style: TextStyle(fontSize: 20)), + Text("Eye_color: ${_person.eyeColor}", + style: TextStyle(fontSize: 20)), + Text("Birth_year: ${_person.birthYear}", + style: TextStyle(fontSize: 20)), + Text("Gender: ${_person.gender}", + style: TextStyle(fontSize: 20)), + Text("Nome do Planeta Natal: ${_person.nomePlaneta}", + style: TextStyle(fontSize: 20)), + Text("Nome da Espécie: ${_person.nomeEspecie}", + style: TextStyle(fontSize: 20)) + ], + ), + ), + ); + } else { + return Container(); + } + }); + } +} diff --git a/star_wars/pubspec.lock b/star_wars/pubspec.lock new file mode 100644 index 00000000..1320232f --- /dev/null +++ b/star_wars/pubspec.lock @@ -0,0 +1,245 @@ +# Generated by pub +# See https://dart.dev/tools/pub/glossary#lockfile +packages: + archive: + dependency: transitive + description: + name: archive + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.11" + args: + dependency: transitive + description: + name: args + url: "https://pub.dartlang.org" + source: hosted + version: "1.5.2" + async: + dependency: transitive + description: + name: async + url: "https://pub.dartlang.org" + source: hosted + version: "2.4.0" + bloc_pattern: + dependency: "direct main" + description: + name: bloc_pattern + url: "https://pub.dartlang.org" + source: hosted + version: "1.5.2" + boolean_selector: + dependency: transitive + description: + name: boolean_selector + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.5" + charcode: + dependency: transitive + description: + name: charcode + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.2" + collection: + dependency: transitive + description: + name: collection + url: "https://pub.dartlang.org" + source: hosted + version: "1.14.11" + convert: + dependency: transitive + description: + name: convert + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.1" + crypto: + dependency: transitive + description: + name: crypto + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.3" + cupertino_icons: + dependency: "direct main" + description: + name: cupertino_icons + url: "https://pub.dartlang.org" + source: hosted + version: "0.1.3" + flutter: + dependency: "direct main" + description: flutter + source: sdk + version: "0.0.0" + flutter_test: + dependency: "direct dev" + description: flutter + source: sdk + version: "0.0.0" + http: + dependency: "direct main" + description: + name: http + url: "https://pub.dartlang.org" + source: hosted + version: "0.12.0+4" + http_parser: + dependency: transitive + description: + name: http_parser + url: "https://pub.dartlang.org" + source: hosted + version: "3.1.3" + image: + dependency: transitive + description: + name: image + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.4" + matcher: + dependency: transitive + description: + name: matcher + url: "https://pub.dartlang.org" + source: hosted + version: "0.12.6" + meta: + dependency: transitive + description: + name: meta + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.8" + path: + dependency: transitive + description: + name: path + url: "https://pub.dartlang.org" + source: hosted + version: "1.6.4" + pedantic: + dependency: transitive + description: + name: pedantic + url: "https://pub.dartlang.org" + source: hosted + version: "1.8.0+1" + petitparser: + dependency: transitive + description: + name: petitparser + url: "https://pub.dartlang.org" + source: hosted + version: "2.4.0" + quiver: + dependency: transitive + description: + name: quiver + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.5" + rxdart: + dependency: "direct main" + description: + name: rxdart + url: "https://pub.dartlang.org" + source: hosted + version: "0.20.0" + sky_engine: + dependency: transitive + description: flutter + source: sdk + version: "0.0.99" + source_span: + dependency: transitive + description: + name: source_span + url: "https://pub.dartlang.org" + source: hosted + version: "1.5.5" + sqflite: + dependency: "direct main" + description: + name: sqflite + url: "https://pub.dartlang.org" + source: hosted + version: "1.3.0" + sqflite_common: + dependency: transitive + description: + name: sqflite_common + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.0+1" + stack_trace: + dependency: transitive + description: + name: stack_trace + url: "https://pub.dartlang.org" + source: hosted + version: "1.9.3" + stream_channel: + dependency: transitive + description: + name: stream_channel + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.0" + string_scanner: + dependency: transitive + description: + name: string_scanner + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.5" + synchronized: + dependency: transitive + description: + name: synchronized + url: "https://pub.dartlang.org" + source: hosted + version: "2.2.0" + term_glyph: + dependency: transitive + description: + name: term_glyph + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.0" + test_api: + dependency: transitive + description: + name: test_api + url: "https://pub.dartlang.org" + source: hosted + version: "0.2.11" + typed_data: + dependency: transitive + description: + name: typed_data + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.6" + vector_math: + dependency: transitive + description: + name: vector_math + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.8" + xml: + dependency: transitive + description: + name: xml + url: "https://pub.dartlang.org" + source: hosted + version: "3.5.0" +sdks: + dart: ">=2.7.0 <3.0.0" + flutter: ">=1.10.1 <2.0.0" diff --git a/star_wars/pubspec.yaml b/star_wars/pubspec.yaml new file mode 100644 index 00000000..b89191bf --- /dev/null +++ b/star_wars/pubspec.yaml @@ -0,0 +1,77 @@ +name: starwars +description: Desafio Android + +# 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.1.0 <3.0.0" + +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: ^0.1.2 + + http: ^0.12.0 + bloc_pattern: ^1.3.0 + rxdart: ^0.20.0 + sqflite: any + +dev_dependencies: + flutter_test: + sdk: flutter + + +# 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