├── res └── values │ └── strings_en.arb ├── android ├── gradle.properties ├── app │ ├── src │ │ ├── main │ │ │ ├── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values │ │ │ │ │ └── styles.xml │ │ │ │ └── drawable │ │ │ │ │ └── launch_background.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── angebagui │ │ │ │ │ └── fruit_juice_app │ │ │ │ │ └── MainActivity.java │ │ │ └── AndroidManifest.xml │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ └── profile │ │ │ └── AndroidManifest.xml │ └── build.gradle ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── settings.gradle └── build.gradle ├── ios ├── Flutter │ ├── Debug.xcconfig │ ├── Release.xcconfig │ └── AppFrameworkInfo.plist ├── Runner │ ├── AppDelegate.h │ ├── Assets.xcassets │ │ ├── LaunchImage.imageset │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ ├── README.md │ │ │ └── Contents.json │ │ └── AppIcon.appiconset │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ └── Contents.json │ ├── main.m │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── Main.storyboard │ │ └── LaunchScreen.storyboard │ └── Info.plist ├── Runner.xcworkspace │ └── contents.xcworkspacedata └── Runner.xcodeproj │ ├── project.xcworkspace │ └── contents.xcworkspacedata │ ├── xcshareddata │ └── xcschemes │ │ └── Runner.xcscheme │ └── project.pbxproj ├── images ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── PP.png ├── SIGN.png ├── STOCK.png ├── VISA.png ├── girl.jpg ├── store.png ├── ADRESSE.png ├── Setting.png ├── avocat.png ├── citron.png ├── mojito.png ├── payment.png ├── CUSTOMER.png ├── MASTERCARD.png ├── code-barre.png ├── enveloppe.png ├── recharge.png ├── DISTRIBUTION.png ├── cocktail_PNG153.png ├── cocktailmojito.jpg ├── 2019-07-04_20-31-57.png └── 587e337f9686194a55adab7c.png ├── screenshots ├── 2019-07-24_20-52-57.png ├── 2019-07-24_20-53-02.png └── 2019-07-24_20-53-28.png ├── .metadata ├── lib ├── main.dart ├── CurveWidget.dart ├── generated │ └── i18n.dart ├── MyScreen.dart ├── PlatterScreen.dart └── HomeScreen.dart ├── test └── widget_test.dart ├── README.md ├── .gitignore ├── pubspec.yaml └── pubspec.lock /res/values/strings_en.arb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | 3 | -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/images/1.png -------------------------------------------------------------------------------- /images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/images/2.png -------------------------------------------------------------------------------- /images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/images/3.png -------------------------------------------------------------------------------- /images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/images/4.png -------------------------------------------------------------------------------- /images/PP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/images/PP.png -------------------------------------------------------------------------------- /images/SIGN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/images/SIGN.png -------------------------------------------------------------------------------- /images/STOCK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/images/STOCK.png -------------------------------------------------------------------------------- /images/VISA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/images/VISA.png -------------------------------------------------------------------------------- /images/girl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/images/girl.jpg -------------------------------------------------------------------------------- /images/store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/images/store.png -------------------------------------------------------------------------------- /images/ADRESSE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/images/ADRESSE.png -------------------------------------------------------------------------------- /images/Setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/images/Setting.png -------------------------------------------------------------------------------- /images/avocat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/images/avocat.png -------------------------------------------------------------------------------- /images/citron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/images/citron.png -------------------------------------------------------------------------------- /images/mojito.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/images/mojito.png -------------------------------------------------------------------------------- /images/payment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/images/payment.png -------------------------------------------------------------------------------- /images/CUSTOMER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/images/CUSTOMER.png -------------------------------------------------------------------------------- /images/MASTERCARD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/images/MASTERCARD.png -------------------------------------------------------------------------------- /images/code-barre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/images/code-barre.png -------------------------------------------------------------------------------- /images/enveloppe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/images/enveloppe.png -------------------------------------------------------------------------------- /images/recharge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/images/recharge.png -------------------------------------------------------------------------------- /images/DISTRIBUTION.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/images/DISTRIBUTION.png -------------------------------------------------------------------------------- /images/cocktail_PNG153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/images/cocktail_PNG153.png -------------------------------------------------------------------------------- /images/cocktailmojito.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/images/cocktailmojito.jpg -------------------------------------------------------------------------------- /images/2019-07-04_20-31-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/images/2019-07-04_20-31-57.png -------------------------------------------------------------------------------- /images/587e337f9686194a55adab7c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/images/587e337f9686194a55adab7c.png -------------------------------------------------------------------------------- /screenshots/2019-07-24_20-52-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/screenshots/2019-07-24_20-52-57.png -------------------------------------------------------------------------------- /screenshots/2019-07-24_20-53-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/screenshots/2019-07-24_20-53-02.png -------------------------------------------------------------------------------- /screenshots/2019-07-24_20-53-28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/screenshots/2019-07-24_20-53-28.png -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angebagui/fruitapp/master/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios/Runner/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | #import "AppDelegate.h" 4 | 5 | int main(int argc, char* argv[]) { 6 | @autoreleasepool { 7 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 23 08:50:38 CEST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-all.zip 7 | -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: b712a172f9694745f50505c93340883493b505e5 8 | channel: stable 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- 1 | # Launch Screen Assets 2 | 3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory. 4 | 5 | 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. -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/angebagui/fruit_juice_app/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.angebagui.fruit_juice_app; 2 | 3 | import android.os.Bundle; 4 | import io.flutter.app.FlutterActivity; 5 | import io.flutter.plugins.GeneratedPluginRegistrant; 6 | 7 | public class MainActivity extends FlutterActivity { 8 | @Override 9 | protected void onCreate(Bundle savedInstanceState) { 10 | super.onCreate(savedInstanceState); 11 | GeneratedPluginRegistrant.registerWith(this); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- 1 | #include "AppDelegate.h" 2 | #include "GeneratedPluginRegistrant.h" 3 | 4 | @implementation AppDelegate 5 | 6 | - (BOOL)application:(UIApplication *)application 7 | didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 8 | [GeneratedPluginRegistrant registerWithRegistry:self]; 9 | // Override point for customization after application launch. 10 | return [super application:application didFinishLaunchingWithOptions:launchOptions]; 11 | } 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "LaunchImage.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "LaunchImage@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "LaunchImage@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | 3 | def flutterProjectRoot = rootProject.projectDir.parentFile.toPath() 4 | 5 | def plugins = new Properties() 6 | def pluginsFile = new File(flutterProjectRoot.toFile(), '.flutter-plugins') 7 | if (pluginsFile.exists()) { 8 | pluginsFile.withReader('UTF-8') { reader -> plugins.load(reader) } 9 | } 10 | 11 | plugins.each { name, path -> 12 | def pluginDirectory = flutterProjectRoot.resolve(path).resolve('android').toFile() 13 | include ":$name" 14 | project(":$name").projectDir = pluginDirectory 15 | } 16 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | repositories { 3 | google() 4 | jcenter() 5 | } 6 | 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:3.2.1' 9 | } 10 | } 11 | 12 | allprojects { 13 | repositories { 14 | google() 15 | jcenter() 16 | } 17 | } 18 | 19 | rootProject.buildDir = '../build' 20 | subprojects { 21 | project.buildDir = "${rootProject.buildDir}/${project.name}" 22 | } 23 | subprojects { 24 | project.evaluationDependsOn(':app') 25 | } 26 | 27 | task clean(type: Delete) { 28 | delete rootProject.buildDir 29 | } 30 | -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | App 9 | CFBundleIdentifier 10 | io.flutter.flutter.app 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | App 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0 23 | MinimumOSVersion 24 | 8.0 25 | 26 | 27 | -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:fruit_juice_app/HomeScreen.dart'; 3 | 4 | void main() => runApp(MyApp()); 5 | 6 | class MyApp extends StatelessWidget { 7 | // This widget is the root of your application. 8 | @override 9 | Widget build(BuildContext context) { 10 | return MaterialApp( 11 | title: 'Fruit Juice App', 12 | theme: ThemeData( 13 | // This is the theme of your application. 14 | // 15 | // Try running your application with "flutter run". You'll see the 16 | // application has a blue toolbar. Then, without quitting the app, try 17 | // changing the primarySwatch below to Colors.green and then invoke 18 | // "hot reload" (press "r" in the console where you ran "flutter run", 19 | // or simply save your changes to "hot reload" in a Flutter IDE). 20 | // Notice that the counter didn't reset back to zero; the application 21 | // is not restarted. 22 | primaryColor: HexColor("#1A4513"), 23 | ), 24 | home: HomeScreen(), 25 | ); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- 1 | // This is a basic Flutter widget test. 2 | // 3 | // To perform an interaction with a widget in your test, use the WidgetTester 4 | // utility that Flutter provides. For example, you can send tap and scroll 5 | // gestures. You can also use WidgetTester to find child widgets in the widget 6 | // tree, read text, and verify that the values of widget properties are correct. 7 | 8 | import 'package:flutter/material.dart'; 9 | import 'package:flutter_test/flutter_test.dart'; 10 | 11 | import 'package:fruit_juice_app/main.dart'; 12 | 13 | void main() { 14 | testWidgets('Counter increments smoke test', (WidgetTester tester) async { 15 | // Build our app and trigger a frame. 16 | await tester.pumpWidget(MyApp()); 17 | 18 | // Verify that our counter starts at 0. 19 | expect(find.text('0'), findsOneWidget); 20 | expect(find.text('1'), findsNothing); 21 | 22 | // Tap the '+' icon and trigger a frame. 23 | await tester.tap(find.byIcon(Icons.add)); 24 | await tester.pump(); 25 | 26 | // Verify that our counter has incremented. 27 | expect(find.text('0'), findsNothing); 28 | expect(find.text('1'), findsOneWidget); 29 | }); 30 | } 31 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Fruit Juice App 2 | 3 | Fruit App is designed with Flutter in 7 hours from scratch according a Graphic Design found on Dribbble.. 4 | 5 | ## Screenshots 6 | 7 | ### Screen 1 8 | 9 | ![alt text](https://github.com/angebagui/fruitapp/blob/master/screenshots/2019-07-24_20-53-28.png) 10 | 11 | ### Screen 2 12 | 13 | ![alt text](https://github.com/angebagui/fruitapp/blob/master/screenshots/2019-07-24_20-52-57.png) 14 | 15 | ### Screen 3 16 | 17 | ![alt text](https://github.com/angebagui/fruitapp/blob/master/screenshots/2019-07-24_20-53-02.png) 18 | 19 | ## Graphic Design 20 | - [Fruit app-two] (https://dribbble.com/shots/6800972-Fruit-app-two) 21 | 22 | ## Facebook Live Recorded 23 | 24 | To take up the challenge, I broadcast my coding live on Facebook. 25 | 26 | - [Part 1] (https://web.facebook.com/kaizensquaresn/videos/687587998373023/) 27 | - [Part 2] (https://web.facebook.com/kaizensquaresn/videos/1289275747913757/) 28 | 29 | 30 | 31 | Licences 32 | -------- 33 | Copyright 2019 Ange Bagui. 34 | 35 | Licensed under the Apache License, Version 2.0 (the "License"); 36 | you may not use this file except in compliance with the License. 37 | You may obtain a copy of the License at 38 | 39 | http://www.apache.org/licenses/LICENSE-2.0 40 | 41 | Unless required by applicable law or agreed to in writing, software 42 | distributed under the License is distributed on an "AS IS" BASIS, 43 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 44 | See the License for the specific language governing permissions and 45 | limitations under the License. 46 | -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | fruit_juice_app 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | $(FLUTTER_BUILD_NAME) 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | $(FLUTTER_BUILD_NUMBER) 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UISupportedInterfaceOrientations 30 | 31 | UIInterfaceOrientationPortrait 32 | UIInterfaceOrientationLandscapeLeft 33 | UIInterfaceOrientationLandscapeRight 34 | 35 | UISupportedInterfaceOrientations~ipad 36 | 37 | UIInterfaceOrientationPortrait 38 | UIInterfaceOrientationPortraitUpsideDown 39 | UIInterfaceOrientationLandscapeLeft 40 | UIInterfaceOrientationLandscapeRight 41 | 42 | UIViewControllerBasedStatusBarAppearance 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Miscellaneous 2 | *.class 3 | *.log 4 | *.pyc 5 | *.swp 6 | .DS_Store 7 | .atom/ 8 | .buildlog/ 9 | .history 10 | .svn/ 11 | 12 | # IntelliJ related 13 | *.iml 14 | *.ipr 15 | *.iws 16 | .idea/ 17 | 18 | # The .vscode folder contains launch configuration and tasks you configure in 19 | # VS Code which you may wish to be included in version control, so this line 20 | # is commented out by default. 21 | #.vscode/ 22 | 23 | # Flutter/Dart/Pub related 24 | **/doc/api/ 25 | .dart_tool/ 26 | .flutter-plugins 27 | .packages 28 | .pub-cache/ 29 | .pub/ 30 | /build/ 31 | 32 | # Android related 33 | **/android/**/gradle-wrapper.jar 34 | **/android/.gradle 35 | **/android/captures/ 36 | **/android/gradlew 37 | **/android/gradlew.bat 38 | **/android/local.properties 39 | **/android/**/GeneratedPluginRegistrant.java 40 | 41 | # iOS/XCode related 42 | **/ios/**/*.mode1v3 43 | **/ios/**/*.mode2v3 44 | **/ios/**/*.moved-aside 45 | **/ios/**/*.pbxuser 46 | **/ios/**/*.perspectivev3 47 | **/ios/**/*sync/ 48 | **/ios/**/.sconsign.dblite 49 | **/ios/**/.tags* 50 | **/ios/**/.vagrant/ 51 | **/ios/**/DerivedData/ 52 | **/ios/**/Icon? 53 | **/ios/**/Pods/ 54 | **/ios/**/.symlinks/ 55 | **/ios/**/profile 56 | **/ios/**/xcuserdata 57 | **/ios/.generated/ 58 | **/ios/Flutter/App.framework 59 | **/ios/Flutter/Flutter.framework 60 | **/ios/Flutter/Generated.xcconfig 61 | **/ios/Flutter/app.flx 62 | **/ios/Flutter/app.zip 63 | **/ios/Flutter/flutter_assets/ 64 | **/ios/ServiceDefinitions.json 65 | **/ios/Runner/GeneratedPluginRegistrant.* 66 | 67 | # Exceptions to above rules. 68 | !**/ios/**/default.mode1v3 69 | !**/ios/**/default.mode2v3 70 | !**/ios/**/default.pbxuser 71 | !**/ios/**/default.perspectivev3 72 | !/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages 73 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 9 | 13 | 20 | 24 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | def localProperties = new Properties() 2 | def localPropertiesFile = rootProject.file('local.properties') 3 | if (localPropertiesFile.exists()) { 4 | localPropertiesFile.withReader('UTF-8') { reader -> 5 | localProperties.load(reader) 6 | } 7 | } 8 | 9 | def flutterRoot = localProperties.getProperty('flutter.sdk') 10 | if (flutterRoot == null) { 11 | throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") 12 | } 13 | 14 | def flutterVersionCode = localProperties.getProperty('flutter.versionCode') 15 | if (flutterVersionCode == null) { 16 | flutterVersionCode = '1' 17 | } 18 | 19 | def flutterVersionName = localProperties.getProperty('flutter.versionName') 20 | if (flutterVersionName == null) { 21 | flutterVersionName = '1.0' 22 | } 23 | 24 | apply plugin: 'com.android.application' 25 | apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" 26 | 27 | android { 28 | compileSdkVersion 28 29 | 30 | lintOptions { 31 | disable 'InvalidPackage' 32 | } 33 | 34 | defaultConfig { 35 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). 36 | applicationId "com.angebagui.fruit_juice_app" 37 | minSdkVersion 16 38 | targetSdkVersion 28 39 | versionCode flutterVersionCode.toInteger() 40 | versionName flutterVersionName 41 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 42 | } 43 | 44 | buildTypes { 45 | release { 46 | // TODO: Add your own signing config for the release build. 47 | // Signing with the debug keys for now, so `flutter run --release` works. 48 | signingConfig signingConfigs.debug 49 | } 50 | } 51 | } 52 | 53 | flutter { 54 | source '../..' 55 | } 56 | 57 | dependencies { 58 | testImplementation 'junit:junit:4.12' 59 | androidTestImplementation 'com.android.support.test:runner:1.0.2' 60 | androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' 61 | } 62 | -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: fruit_juice_app 2 | description: A new Flutter application. 3 | 4 | # The following defines the version and build number for your application. 5 | # A version number is three numbers separated by dots, like 1.2.43 6 | # followed by an optional build number separated by a +. 7 | # Both the version and the builder number may be overridden in flutter 8 | # build by specifying --build-name and --build-number, respectively. 9 | # In Android, build-name is used as versionName while build-number used as versionCode. 10 | # Read more about Android versioning at https://developer.android.com/studio/publish/versioning 11 | # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. 12 | # Read more about iOS versioning at 13 | # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html 14 | version: 1.0.0+1 15 | 16 | environment: 17 | sdk: ">=2.1.0 <3.0.0" 18 | 19 | dependencies: 20 | flutter: 21 | sdk: flutter 22 | 23 | # The following adds the Cupertino Icons font to your application. 24 | # Use with the CupertinoIcons class for iOS style icons. 25 | cupertino_icons: ^0.1.2 26 | 27 | dev_dependencies: 28 | flutter_test: 29 | sdk: flutter 30 | 31 | 32 | # For information on the generic Dart part of this file, see the 33 | # following page: https://dart.dev/tools/pub/pubspec 34 | 35 | # The following section is specific to Flutter. 36 | flutter: 37 | 38 | # The following line ensures that the Material Icons font is 39 | # included with your application, so that you can use the icons in 40 | # the material Icons class. 41 | uses-material-design: true 42 | 43 | # To add assets to your application, add an assets section, like this: 44 | assets: 45 | - images/ 46 | # - images/a_dot_ham.jpeg 47 | 48 | # An image asset can refer to one or more resolution-specific "variants", see 49 | # https://flutter.dev/assets-and-images/#resolution-aware. 50 | 51 | # For details regarding adding assets from package dependencies, see 52 | # https://flutter.dev/assets-and-images/#from-packages 53 | 54 | # To add custom fonts to your application, add a fonts section here, 55 | # in this "flutter" section. Each entry in this list should have a 56 | # "family" key with the font family name, and a "fonts" key with a 57 | # list giving the asset and other descriptors for the font. For 58 | # example: 59 | # fonts: 60 | # - family: Schyler 61 | # fonts: 62 | # - asset: fonts/Schyler-Regular.ttf 63 | # - asset: fonts/Schyler-Italic.ttf 64 | # style: italic 65 | # - family: Trajan Pro 66 | # fonts: 67 | # - asset: fonts/TrajanPro.ttf 68 | # - asset: fonts/TrajanPro_Bold.ttf 69 | # weight: 700 70 | # 71 | # For details regarding fonts from package dependencies, 72 | # see https://flutter.dev/custom-fonts/#from-packages 73 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "size" : "20x20", 5 | "idiom" : "iphone", 6 | "filename" : "Icon-App-20x20@2x.png", 7 | "scale" : "2x" 8 | }, 9 | { 10 | "size" : "20x20", 11 | "idiom" : "iphone", 12 | "filename" : "Icon-App-20x20@3x.png", 13 | "scale" : "3x" 14 | }, 15 | { 16 | "size" : "29x29", 17 | "idiom" : "iphone", 18 | "filename" : "Icon-App-29x29@1x.png", 19 | "scale" : "1x" 20 | }, 21 | { 22 | "size" : "29x29", 23 | "idiom" : "iphone", 24 | "filename" : "Icon-App-29x29@2x.png", 25 | "scale" : "2x" 26 | }, 27 | { 28 | "size" : "29x29", 29 | "idiom" : "iphone", 30 | "filename" : "Icon-App-29x29@3x.png", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "size" : "40x40", 35 | "idiom" : "iphone", 36 | "filename" : "Icon-App-40x40@2x.png", 37 | "scale" : "2x" 38 | }, 39 | { 40 | "size" : "40x40", 41 | "idiom" : "iphone", 42 | "filename" : "Icon-App-40x40@3x.png", 43 | "scale" : "3x" 44 | }, 45 | { 46 | "size" : "60x60", 47 | "idiom" : "iphone", 48 | "filename" : "Icon-App-60x60@2x.png", 49 | "scale" : "2x" 50 | }, 51 | { 52 | "size" : "60x60", 53 | "idiom" : "iphone", 54 | "filename" : "Icon-App-60x60@3x.png", 55 | "scale" : "3x" 56 | }, 57 | { 58 | "size" : "20x20", 59 | "idiom" : "ipad", 60 | "filename" : "Icon-App-20x20@1x.png", 61 | "scale" : "1x" 62 | }, 63 | { 64 | "size" : "20x20", 65 | "idiom" : "ipad", 66 | "filename" : "Icon-App-20x20@2x.png", 67 | "scale" : "2x" 68 | }, 69 | { 70 | "size" : "29x29", 71 | "idiom" : "ipad", 72 | "filename" : "Icon-App-29x29@1x.png", 73 | "scale" : "1x" 74 | }, 75 | { 76 | "size" : "29x29", 77 | "idiom" : "ipad", 78 | "filename" : "Icon-App-29x29@2x.png", 79 | "scale" : "2x" 80 | }, 81 | { 82 | "size" : "40x40", 83 | "idiom" : "ipad", 84 | "filename" : "Icon-App-40x40@1x.png", 85 | "scale" : "1x" 86 | }, 87 | { 88 | "size" : "40x40", 89 | "idiom" : "ipad", 90 | "filename" : "Icon-App-40x40@2x.png", 91 | "scale" : "2x" 92 | }, 93 | { 94 | "size" : "76x76", 95 | "idiom" : "ipad", 96 | "filename" : "Icon-App-76x76@1x.png", 97 | "scale" : "1x" 98 | }, 99 | { 100 | "size" : "76x76", 101 | "idiom" : "ipad", 102 | "filename" : "Icon-App-76x76@2x.png", 103 | "scale" : "2x" 104 | }, 105 | { 106 | "size" : "83.5x83.5", 107 | "idiom" : "ipad", 108 | "filename" : "Icon-App-83.5x83.5@2x.png", 109 | "scale" : "2x" 110 | }, 111 | { 112 | "size" : "1024x1024", 113 | "idiom" : "ios-marketing", 114 | "filename" : "Icon-App-1024x1024@1x.png", 115 | "scale" : "1x" 116 | } 117 | ], 118 | "info" : { 119 | "version" : 1, 120 | "author" : "xcode" 121 | } 122 | } 123 | -------------------------------------------------------------------------------- /lib/CurveWidget.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class CurveWidget extends StatelessWidget { 4 | @override 5 | Widget build(BuildContext context) { 6 | return ClipPath( 7 | child: new Container( 8 | height: 323, 9 | width: MediaQuery.of(context).size.width, 10 | color: HexColor("#57884b"), 11 | child: new Stack( 12 | children: [ 13 | Positioned( 14 | bottom: 170, 15 | left:-120, 16 | top:-300, 17 | child: new Container( 18 | height: 300.0, 19 | width: 300.0, 20 | decoration: BoxDecoration( 21 | color: HexColor('#5c8f4f'), 22 | shape: BoxShape.circle, 23 | ), 24 | ), 25 | ), 26 | Positioned( 27 | bottom: 0, 28 | left:0, 29 | right: -150.0, 30 | top:50, 31 | child: new Container( 32 | height: 450.0, 33 | width: 450.0, 34 | decoration: BoxDecoration( 35 | color: HexColor('#528e47'), 36 | shape: BoxShape.circle, 37 | ), 38 | ), 39 | ), 40 | Positioned( 41 | bottom: 0, 42 | left:0, 43 | right: -300.0, 44 | top:150, 45 | child: new Container( 46 | height: 250.0, 47 | width: 250.0, 48 | decoration: BoxDecoration( 49 | color: HexColor('#5c8f4f'), 50 | shape: BoxShape.circle, 51 | ), 52 | ), 53 | ) 54 | ], 55 | ), 56 | ), 57 | clipper: CurveClipper(), 58 | ); 59 | } 60 | } 61 | 62 | class CurveClipper extends CustomClipper{ 63 | 64 | @override 65 | Path getClip(Size size) { 66 | 67 | var path = new Path(); 68 | path.lineTo(0.0, size.height -40); 69 | 70 | var firstControlPoint = Offset(size.width/2, size.height); 71 | var firstEndPoint = Offset(size.width,size.height - 50); 72 | path.quadraticBezierTo(firstControlPoint.dx, firstControlPoint.dy, firstEndPoint.dx, firstEndPoint.dy); 73 | 74 | path.lineTo(size.width, size.height - 40); 75 | path.lineTo(size.width, 0.0); 76 | path.close(); 77 | 78 | 79 | return path; 80 | } 81 | 82 | @override 83 | bool shouldReclip(CustomClipper oldClipper) { 84 | return false; 85 | } 86 | 87 | } 88 | 89 | class HexColor extends Color { 90 | static int _getColorFromHex(String hexColor) { 91 | hexColor = hexColor.toUpperCase().replaceAll("#", ""); 92 | if (hexColor.length == 6) { 93 | hexColor = "FF" + hexColor; 94 | } 95 | return int.parse(hexColor, radix: 16); 96 | } 97 | 98 | HexColor(final String hexColor) : super(_getColorFromHex(hexColor)); 99 | } 100 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 39 | 40 | 41 | 42 | 43 | 44 | 54 | 56 | 62 | 63 | 64 | 65 | 66 | 67 | 73 | 75 | 81 | 82 | 83 | 84 | 86 | 87 | 90 | 91 | 92 | -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- 1 | # Generated by pub 2 | # See https://dart.dev/tools/pub/glossary#lockfile 3 | packages: 4 | async: 5 | dependency: transitive 6 | description: 7 | name: async 8 | url: "https://pub.dartlang.org" 9 | source: hosted 10 | version: "2.2.0" 11 | boolean_selector: 12 | dependency: transitive 13 | description: 14 | name: boolean_selector 15 | url: "https://pub.dartlang.org" 16 | source: hosted 17 | version: "1.0.4" 18 | charcode: 19 | dependency: transitive 20 | description: 21 | name: charcode 22 | url: "https://pub.dartlang.org" 23 | source: hosted 24 | version: "1.1.2" 25 | collection: 26 | dependency: transitive 27 | description: 28 | name: collection 29 | url: "https://pub.dartlang.org" 30 | source: hosted 31 | version: "1.14.11" 32 | cupertino_icons: 33 | dependency: "direct main" 34 | description: 35 | name: cupertino_icons 36 | url: "https://pub.dartlang.org" 37 | source: hosted 38 | version: "0.1.2" 39 | flutter: 40 | dependency: "direct main" 41 | description: flutter 42 | source: sdk 43 | version: "0.0.0" 44 | flutter_test: 45 | dependency: "direct dev" 46 | description: flutter 47 | source: sdk 48 | version: "0.0.0" 49 | matcher: 50 | dependency: transitive 51 | description: 52 | name: matcher 53 | url: "https://pub.dartlang.org" 54 | source: hosted 55 | version: "0.12.5" 56 | meta: 57 | dependency: transitive 58 | description: 59 | name: meta 60 | url: "https://pub.dartlang.org" 61 | source: hosted 62 | version: "1.1.6" 63 | path: 64 | dependency: transitive 65 | description: 66 | name: path 67 | url: "https://pub.dartlang.org" 68 | source: hosted 69 | version: "1.6.2" 70 | pedantic: 71 | dependency: transitive 72 | description: 73 | name: pedantic 74 | url: "https://pub.dartlang.org" 75 | source: hosted 76 | version: "1.7.0" 77 | quiver: 78 | dependency: transitive 79 | description: 80 | name: quiver 81 | url: "https://pub.dartlang.org" 82 | source: hosted 83 | version: "2.0.3" 84 | sky_engine: 85 | dependency: transitive 86 | description: flutter 87 | source: sdk 88 | version: "0.0.99" 89 | source_span: 90 | dependency: transitive 91 | description: 92 | name: source_span 93 | url: "https://pub.dartlang.org" 94 | source: hosted 95 | version: "1.5.5" 96 | stack_trace: 97 | dependency: transitive 98 | description: 99 | name: stack_trace 100 | url: "https://pub.dartlang.org" 101 | source: hosted 102 | version: "1.9.3" 103 | stream_channel: 104 | dependency: transitive 105 | description: 106 | name: stream_channel 107 | url: "https://pub.dartlang.org" 108 | source: hosted 109 | version: "2.0.0" 110 | string_scanner: 111 | dependency: transitive 112 | description: 113 | name: string_scanner 114 | url: "https://pub.dartlang.org" 115 | source: hosted 116 | version: "1.0.4" 117 | term_glyph: 118 | dependency: transitive 119 | description: 120 | name: term_glyph 121 | url: "https://pub.dartlang.org" 122 | source: hosted 123 | version: "1.1.0" 124 | test_api: 125 | dependency: transitive 126 | description: 127 | name: test_api 128 | url: "https://pub.dartlang.org" 129 | source: hosted 130 | version: "0.2.5" 131 | typed_data: 132 | dependency: transitive 133 | description: 134 | name: typed_data 135 | url: "https://pub.dartlang.org" 136 | source: hosted 137 | version: "1.1.6" 138 | vector_math: 139 | dependency: transitive 140 | description: 141 | name: vector_math 142 | url: "https://pub.dartlang.org" 143 | source: hosted 144 | version: "2.0.8" 145 | sdks: 146 | dart: ">=2.2.2 <3.0.0" 147 | -------------------------------------------------------------------------------- /lib/generated/i18n.dart: -------------------------------------------------------------------------------- 1 | import 'dart:async'; 2 | 3 | import 'package:flutter/foundation.dart'; 4 | import 'package:flutter/material.dart'; 5 | 6 | // ignore_for_file: non_constant_identifier_names 7 | // ignore_for_file: camel_case_types 8 | // ignore_for_file: prefer_single_quotes 9 | 10 | // This file is automatically generated. DO NOT EDIT, all your changes would be lost. 11 | class S implements WidgetsLocalizations { 12 | const S(); 13 | 14 | static const GeneratedLocalizationsDelegate delegate = 15 | GeneratedLocalizationsDelegate(); 16 | 17 | static S of(BuildContext context) => Localizations.of(context, S); 18 | 19 | @override 20 | TextDirection get textDirection => TextDirection.ltr; 21 | 22 | } 23 | 24 | class $en extends S { 25 | const $en(); 26 | } 27 | 28 | class GeneratedLocalizationsDelegate extends LocalizationsDelegate { 29 | const GeneratedLocalizationsDelegate(); 30 | 31 | List get supportedLocales { 32 | return const [ 33 | Locale("en", ""), 34 | ]; 35 | } 36 | 37 | LocaleListResolutionCallback listResolution({Locale fallback, bool withCountry = true}) { 38 | return (List locales, Iterable supported) { 39 | if (locales == null || locales.isEmpty) { 40 | return fallback ?? supported.first; 41 | } else { 42 | return _resolve(locales.first, fallback, supported, withCountry); 43 | } 44 | }; 45 | } 46 | 47 | LocaleResolutionCallback resolution({Locale fallback, bool withCountry = true}) { 48 | return (Locale locale, Iterable supported) { 49 | return _resolve(locale, fallback, supported, withCountry); 50 | }; 51 | } 52 | 53 | @override 54 | Future load(Locale locale) { 55 | final String lang = getLang(locale); 56 | if (lang != null) { 57 | switch (lang) { 58 | case "en": 59 | return SynchronousFuture(const $en()); 60 | default: 61 | // NO-OP. 62 | } 63 | } 64 | return SynchronousFuture(const S()); 65 | } 66 | 67 | @override 68 | bool isSupported(Locale locale) => _isSupported(locale, true); 69 | 70 | @override 71 | bool shouldReload(GeneratedLocalizationsDelegate old) => false; 72 | 73 | /// 74 | /// Internal method to resolve a locale from a list of locales. 75 | /// 76 | Locale _resolve(Locale locale, Locale fallback, Iterable supported, bool withCountry) { 77 | if (locale == null || !_isSupported(locale, withCountry)) { 78 | return fallback ?? supported.first; 79 | } 80 | 81 | final Locale languageLocale = Locale(locale.languageCode, ""); 82 | if (supported.contains(locale)) { 83 | return locale; 84 | } else if (supported.contains(languageLocale)) { 85 | return languageLocale; 86 | } else { 87 | final Locale fallbackLocale = fallback ?? supported.first; 88 | return fallbackLocale; 89 | } 90 | } 91 | 92 | /// 93 | /// Returns true if the specified locale is supported, false otherwise. 94 | /// 95 | bool _isSupported(Locale locale, bool withCountry) { 96 | if (locale != null) { 97 | for (Locale supportedLocale in supportedLocales) { 98 | // Language must always match both locales. 99 | if (supportedLocale.languageCode != locale.languageCode) { 100 | continue; 101 | } 102 | 103 | // If country code matches, return this locale. 104 | if (supportedLocale.countryCode == locale.countryCode) { 105 | return true; 106 | } 107 | 108 | // If no country requirement is requested, check if this locale has no country. 109 | if (true != withCountry && (supportedLocale.countryCode == null || supportedLocale.countryCode.isEmpty)) { 110 | return true; 111 | } 112 | } 113 | } 114 | return false; 115 | } 116 | } 117 | 118 | String getLang(Locale l) => l == null 119 | ? null 120 | : l.countryCode != null && l.countryCode.isEmpty 121 | ? l.languageCode 122 | : l.toString(); 123 | -------------------------------------------------------------------------------- /lib/MyScreen.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class MyScreen extends StatefulWidget { 4 | @override 5 | _MyScreenState createState() => _MyScreenState(); 6 | } 7 | 8 | class _MyScreenState extends State { 9 | @override 10 | Widget build(BuildContext context) { 11 | return Scaffold( 12 | body: new Column(children: [ 13 | new Container( 14 | child: new Stack(children: [ 15 | new Container( 16 | height: MediaQuery.of(context).size.height, 17 | width: MediaQuery.of(context).size.width, 18 | color: HexColor("#57884b"), 19 | child: new Stack( 20 | children: [ 21 | Positioned( 22 | bottom: MediaQuery.of(context).size.height -170, 23 | left:-120, 24 | top:-300, 25 | child: new Container( 26 | height: 300.0, 27 | width: 300.0, 28 | decoration: BoxDecoration( 29 | color: HexColor('#5c8f4f'), 30 | shape: BoxShape.circle, 31 | ), 32 | ), 33 | ), 34 | Positioned( 35 | bottom: MediaQuery.of(context).size.height - 400, 36 | left:0, 37 | right: -150.0, 38 | top:50, 39 | child: new Container( 40 | height: 450.0, 41 | width: 450.0, 42 | decoration: BoxDecoration( 43 | color: HexColor('#528e47'), 44 | shape: BoxShape.circle, 45 | ), 46 | ), 47 | ), 48 | Positioned( 49 | bottom: MediaQuery.of(context).size.height - 400, 50 | left:0, 51 | right: -300.0, 52 | top:150, 53 | child: new Container( 54 | height: 250.0, 55 | width: 250.0, 56 | decoration: BoxDecoration( 57 | color: HexColor('#5c8f4f'), 58 | shape: BoxShape.circle, 59 | ), 60 | ), 61 | ), 62 | Positioned( 63 | bottom: 100.0, 64 | left:-300.0, 65 | right: 0, 66 | top:MediaQuery.of(context).size.height -500.0, 67 | child: new Container( 68 | height: 250.0, 69 | width: 250.0, 70 | decoration: BoxDecoration( 71 | color: HexColor('#5c8f4f'), 72 | shape: BoxShape.circle, 73 | ), 74 | ), 75 | ), 76 | 77 | 78 | 79 | Positioned( 80 | bottom: 0, 81 | left:0, 82 | right: -300.0, 83 | top:MediaQuery.of(context).size.height -250.0, 84 | child: new Container( 85 | height: 250.0, 86 | width: 250.0, 87 | decoration: BoxDecoration( 88 | color: HexColor('#5c8f4f'), 89 | shape: BoxShape.circle, 90 | ), 91 | ), 92 | ) 93 | ], 94 | ), 95 | ), 96 | new SingleChildScrollView( 97 | child: new Column( 98 | children: [ 99 | SizedBox(height: 50.0,), 100 | new Row( 101 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 102 | children: [ 103 | IconButton(icon: Icon(Icons.keyboard_backspace,size: 30.0, color: Colors.white,), onPressed: (){ 104 | Navigator.pop(context); 105 | }), 106 | 107 | IconButton(icon: Icon(Icons.settings,size: 30.0,color: Colors.white,), onPressed: (){ 108 | 109 | }) 110 | ], 111 | ), 112 | 113 | SizedBox(height: 20.0,), 114 | new Container( 115 | child: new Stack( 116 | children: [ 117 | 118 | new Container( 119 | margin: EdgeInsets.only(top: 50.0,left: 20.0, right: 20.0), 120 | width: MediaQuery.of(context).size.width, 121 | height: 600.0, 122 | decoration: BoxDecoration( 123 | color: Colors.white, 124 | borderRadius: BorderRadius.circular(15.0) 125 | ), 126 | child: new Column( 127 | children: [ 128 | new Container( 129 | padding: EdgeInsets.only(left: 10.0, right:10.0, top:2.0, bottom: 2.0), 130 | margin: EdgeInsets.only(top: 50.0, right: 80.0, left: 80.0), 131 | decoration: BoxDecoration( 132 | color: HexColor("#57884b"), 133 | borderRadius: BorderRadius.circular(20.0), 134 | border: Border.all(color: HexColor("#57884b"), width: 4.0) 135 | ), 136 | child: new Row( 137 | mainAxisAlignment: MainAxisAlignment.center, 138 | children: [ 139 | new Text("Sliver: 180****9873", style: new TextStyle(color: Colors.white, fontSize: 16.0),), 140 | Icon(Icons.play_arrow, color: Colors.white,) 141 | ], 142 | ), 143 | ), 144 | 145 | new Container( 146 | margin: EdgeInsets.only(top:20.0), 147 | padding: EdgeInsets.only(left: 20.0, right:20.0), 148 | child: new Row( 149 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 150 | children: [ 151 | new Container( 152 | child: new Column(children: [ 153 | new Text('399', style: new TextStyle(color: HexColor("#57884b"), fontSize: 18,fontWeight: FontWeight.bold),), 154 | SizedBox(height: 5.0,), 155 | new Text('Integral', style: new TextStyle(color:Colors.black, fontSize: 14,),), 156 | ],) 157 | ), 158 | 159 | new Container( 160 | child: new Column(children: [ 161 | new Text('2', style: new TextStyle(color: HexColor("#57884b"), fontSize: 18,fontWeight: FontWeight.bold),), 162 | SizedBox(height: 5.0,), 163 | new Text('Coupons', style: new TextStyle(color: Colors.black, fontSize: 14,),), 164 | ],) 165 | ), 166 | new Container( 167 | child: new Column(children: [ 168 | new Text('2.6', style: new TextStyle(color: HexColor("#57884b"), fontSize: 18,fontWeight: FontWeight.bold),), 169 | SizedBox(height: 5.0,), 170 | new Text('Wallet', style: new TextStyle(color: Colors.black, fontSize: 14,),), 171 | ],) 172 | ) 173 | ], 174 | ) 175 | ), 176 | 177 | new Container( 178 | width: MediaQuery.of(context).size.width - 40.0, 179 | height:150.0, 180 | margin: EdgeInsets.only(left: 30.0, right:30.0), 181 | decoration: BoxDecoration( 182 | image: DecorationImage(image: AssetImage('images/code-barre.png')) 183 | ), 184 | ), 185 | new Center( 186 | child: new Row( 187 | mainAxisAlignment: MainAxisAlignment.center, 188 | children: [ 189 | Icon(Icons.refresh, color: Colors.grey,), 190 | new Text('Refresh every 3 seconds') 191 | ], 192 | ), 193 | ), 194 | new Container( 195 | width: MediaQuery.of(context).size.width - 40.0, 196 | height:100.0, 197 | child:new Stack( 198 | children: [ 199 | Padding( 200 | padding: const EdgeInsets.only(left: 20.0, right:20.0, top: 40.0), 201 | child: Divider(), 202 | ), 203 | Positioned( 204 | bottom: 20, 205 | left:-410, 206 | right:0, 207 | top:20, 208 | child: new Container( 209 | height: 20.0, 210 | width: 20.0, 211 | decoration: BoxDecoration( 212 | color: HexColor('#528e47'), 213 | shape: BoxShape.circle, 214 | ), 215 | ), 216 | ), 217 | 218 | Positioned( 219 | bottom: 20, 220 | left:0, 221 | right:-410, 222 | top:20, 223 | child: new Container( 224 | height: 20.0, 225 | width: 20.0, 226 | decoration: BoxDecoration( 227 | color: HexColor('#528e47'), 228 | shape: BoxShape.circle, 229 | ), 230 | ), 231 | ), 232 | ], 233 | ) 234 | ), 235 | 236 | new Center( 237 | child: new Row( 238 | mainAxisAlignment: MainAxisAlignment.center, 239 | children: [ 240 | 241 | new Text('Others terms of payment') 242 | ], 243 | ), 244 | ), 245 | SizedBox( 246 | height: 20.0, 247 | ), 248 | new Center( 249 | child: new Row( 250 | mainAxisAlignment: MainAxisAlignment.center, 251 | children: [ 252 | new Container( 253 | height: 100.0, 254 | width: 100.0, 255 | decoration: BoxDecoration( 256 | image: DecorationImage(image: AssetImage('images/PP.png')) 257 | ), 258 | ), 259 | new Container( 260 | height: 100.0, 261 | width: 100.0, 262 | decoration: BoxDecoration( 263 | image: DecorationImage(image: AssetImage('images/MASTERCARD.png')) 264 | ), 265 | ), 266 | new Container( 267 | height: 100.0, 268 | width: 100.0, 269 | decoration: BoxDecoration( 270 | image: DecorationImage(image: AssetImage('images/VISA.png')) 271 | ), 272 | ) 273 | 274 | ], 275 | ), 276 | ), 277 | ], 278 | ), 279 | ), 280 | Align( 281 | alignment: Alignment.topCenter, 282 | child: new Container( 283 | height: 80, 284 | width: 80, 285 | decoration: BoxDecoration( 286 | shape: BoxShape.circle, 287 | border: Border.all(color: HexColor("#95AF8E"), width: 4.0) 288 | ), 289 | child:CircleAvatar( 290 | backgroundImage: AssetImage('images/girl.jpg'), 291 | backgroundColor: Colors.transparent, 292 | ) 293 | ), 294 | ), 295 | ], 296 | ), 297 | ) 298 | ], 299 | ), 300 | ) 301 | ]) 302 | ), 303 | 304 | 305 | ]), 306 | ); 307 | } 308 | } 309 | 310 | class HexColor extends Color { 311 | static int _getColorFromHex(String hexColor) { 312 | hexColor = hexColor.toUpperCase().replaceAll("#", ""); 313 | if (hexColor.length == 6) { 314 | hexColor = "FF" + hexColor; 315 | } 316 | return int.parse(hexColor, radix: 16); 317 | } 318 | 319 | HexColor(final String hexColor) : super(_getColorFromHex(hexColor)); 320 | } 321 | -------------------------------------------------------------------------------- /lib/PlatterScreen.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:fruit_juice_app/HomeScreen.dart'; 3 | import 'package:fruit_juice_app/MyScreen.dart'; 4 | 5 | class PlatterScreen extends StatefulWidget { 6 | 7 | @override 8 | _PlatterScreenState createState() => _PlatterScreenState(); 9 | } 10 | 11 | class _PlatterScreenState extends State { 12 | @override 13 | Widget build(BuildContext context) { 14 | return Scaffold( 15 | body: new Column( 16 | children: [ 17 | SizedBox(height: 100.0,), 18 | new Container( 19 | height: 180.0, 20 | width: MediaQuery.of(context).size.width - 30, 21 | margin: EdgeInsets.only(left: 15.0, right: 15.0), 22 | padding: EdgeInsets.only(left: 20.0, top: 20.0, right: 0.0), 23 | decoration: BoxDecoration( 24 | color: HexColor("#57884b"), 25 | borderRadius: BorderRadius.circular(12.0) 26 | ), 27 | child: new Row( 28 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 29 | children: [ 30 | new Container( 31 | child: new Column( 32 | mainAxisAlignment: MainAxisAlignment.start, 33 | crossAxisAlignment: CrossAxisAlignment.start, 34 | children: [ 35 | new Container( 36 | padding: EdgeInsets.only(top:10.0), 37 | child: new Text("Import Lemon", style: new TextStyle(color: Colors.white, fontWeight: FontWeight.bold, fontSize: 30.0),), 38 | ), 39 | new Container( 40 | padding: EdgeInsets.only(top:10.0), 41 | child: new Text("Fresh perfume seedless", style: new TextStyle(color: Colors.white, fontSize: 18.0),), 42 | ), 43 | new Container( 44 | padding: EdgeInsets.only(left: 10.0, right:10.0, top:2.0, bottom: 2.0), 45 | margin: EdgeInsets.only(top: 10.0), 46 | decoration: BoxDecoration( 47 | color: HexColor("#6eb461"), 48 | borderRadius: BorderRadius.circular(20.0), 49 | border: Border.all(color: HexColor("#6eb461"), width: 4.0) 50 | ), 51 | child: new Text("Buy Now", style: new TextStyle(color: Colors.white, fontSize: 16.0),), 52 | ) 53 | ], 54 | ), 55 | ), 56 | new Container( 57 | child: Image(image: AssetImage('images/citron.png')), 58 | ) 59 | ], 60 | ), 61 | ), 62 | new Container( 63 | padding: EdgeInsets.only(left: 20.0, right: 20.0, top: 20.0), 64 | child: new Row( 65 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 66 | children: [ 67 | 68 | new Container( 69 | child: Image(image: AssetImage('images/1.png'),width: 70.0,), 70 | ), 71 | new Container( 72 | child: Image(image: AssetImage('images/2.png'),width: 45.0,), 73 | ), 74 | new Container( 75 | child: Image(image: AssetImage('images/3.png'),width: 40.0,), 76 | ), 77 | new Container( 78 | child: Image(image: AssetImage('images/4.png'),width: 45.0,), 79 | ), 80 | 81 | ], 82 | ), 83 | ), 84 | new Container( 85 | padding: EdgeInsets.only( right: 20.0, top: 20.0), 86 | height: 50.0, 87 | child: new ListView( 88 | scrollDirection: Axis.horizontal, 89 | children: [ 90 | new Container( 91 | padding: EdgeInsets.only(left: 20), 92 | child: Text('Fruit tea', style: new TextStyle(color: Colors.black, fontSize: 18.0, fontWeight: FontWeight.bold),) 93 | ), 94 | new Container( 95 | padding: EdgeInsets.only(left: 20), 96 | child: Text('Salad', style: new TextStyle(color: Colors.grey[400], fontSize: 18.0),) 97 | ), 98 | new Container( 99 | padding: EdgeInsets.only(left: 20), 100 | child: Text('Carving', style: new TextStyle(color: Colors.grey[400], fontSize: 18.0),) 101 | ), 102 | new Container( 103 | padding: EdgeInsets.only(left: 20), 104 | child: Text('Basket', style: new TextStyle(color: Colors.grey[400], fontSize: 18.0),) 105 | ), 106 | new Container( 107 | padding: EdgeInsets.only(left: 20), 108 | child: Text('Something', style: new TextStyle(color: Colors.grey[400], fontSize: 18.0),) 109 | ), 110 | 111 | ], 112 | ), 113 | ), 114 | 115 | new Container( 116 | padding: EdgeInsets.only( right: 20.0, top: 20.0), 117 | height: 140.0, 118 | child: new ListView( 119 | scrollDirection: Axis.horizontal, 120 | children: [ 121 | new Container( 122 | width: 120.0, 123 | height: 120.0, 124 | margin: EdgeInsets.only(left: 20), 125 | decoration: BoxDecoration( 126 | color: HexColor("#acc3a6"), 127 | borderRadius: BorderRadius.circular(10.0) 128 | ), 129 | child: new Stack( 130 | children: [ 131 | new Container( 132 | child: Image(image: AssetImage('images/mojito.png'), width: 110.0,height: 110.0,), 133 | ), 134 | Align( 135 | alignment: Alignment.bottomRight, 136 | child: new Container( 137 | padding: EdgeInsets.only(left: 8.0, right:8.0, top:1.0, bottom: 1.0), 138 | margin: EdgeInsets.only(top: 10.0, bottom: 10.0, right: 10.0), 139 | decoration: BoxDecoration( 140 | color: HexColor("#667d58"), 141 | borderRadius: BorderRadius.circular(10.0), 142 | border: Border.all(color: HexColor("#667d58"), width: 4.0) 143 | ), 144 | child: new Text("\$38", style: new TextStyle(color: Colors.white, fontSize: 16.0),), 145 | ), 146 | ) 147 | ], 148 | ) 149 | ), 150 | new Container( 151 | width: 120.0, 152 | height: 120.0, 153 | margin: EdgeInsets.only(left: 20), 154 | decoration: BoxDecoration( 155 | color: HexColor("#acc3a6"), 156 | borderRadius: BorderRadius.circular(10.0) 157 | ), 158 | child: new Stack( 159 | children: [ 160 | new Container( 161 | child: Image(image: AssetImage('images/cocktail_PNG153.png'), width: 110.0,height: 110.0,), 162 | ), 163 | Align( 164 | alignment: Alignment.bottomRight, 165 | child: new Container( 166 | padding: EdgeInsets.only(left: 8.0, right:8.0, top:1.0, bottom: 1.0), 167 | margin: EdgeInsets.only(top: 10.0, bottom: 10.0, right: 10.0), 168 | decoration: BoxDecoration( 169 | color: HexColor("#667d58"), 170 | borderRadius: BorderRadius.circular(10.0), 171 | border: Border.all(color: HexColor("#667d58"), width: 4.0) 172 | ), 173 | child: new Text("\$26", style: new TextStyle(color: Colors.white, fontSize: 16.0),), 174 | ), 175 | ) 176 | ], 177 | ) 178 | ), 179 | new Container( 180 | width: 120.0, 181 | height: 120.0, 182 | margin: EdgeInsets.only(left: 20), 183 | decoration: BoxDecoration( 184 | color: HexColor("#acc3a6"), 185 | borderRadius: BorderRadius.circular(10.0) 186 | ), 187 | child: new Stack( 188 | children: [ 189 | new Container( 190 | child: Image(image: AssetImage('images/587e337f9686194a55adab7c.png'), width: 110.0,height: 110.0,), 191 | ), 192 | Align( 193 | alignment: Alignment.bottomRight, 194 | child: new Container( 195 | padding: EdgeInsets.only(left: 8.0, right:8.0, top:1.0, bottom: 1.0), 196 | margin: EdgeInsets.only(top: 10.0, bottom: 10.0, right: 10.0), 197 | decoration: BoxDecoration( 198 | color: HexColor("#667d58"), 199 | borderRadius: BorderRadius.circular(10.0), 200 | border: Border.all(color: HexColor("#667d58"), width: 4.0) 201 | ), 202 | child: new Text("\$48", style: new TextStyle(color: Colors.white, fontSize: 16.0),), 203 | ), 204 | ) 205 | ], 206 | ) 207 | ), 208 | 209 | 210 | ], 211 | ), 212 | ), 213 | 214 | new Container( 215 | padding: EdgeInsets.only(left: 20, top:20.0), 216 | alignment: Alignment.topLeft, 217 | child: Text('Selling', style: new TextStyle(color: Colors.black, fontSize: 20.0, fontWeight: FontWeight.bold),) 218 | ), 219 | new Card( 220 | margin: EdgeInsets.all(10.0), 221 | child: new Container( 222 | padding: EdgeInsets.all(10.0), 223 | height: 140.0, 224 | child: new Row( 225 | mainAxisAlignment: MainAxisAlignment.start, 226 | crossAxisAlignment: CrossAxisAlignment.start, 227 | children: [ 228 | new Container( 229 | child:Image(image: AssetImage('images/avocat.png'),width: 140.0,) 230 | ), 231 | new Expanded(child: new Container( 232 | child: new Column( 233 | children: [ 234 | Container( 235 | child: new Text('Big Single avocado fresh imported fruits the Mexico', 236 | style: new TextStyle(color: Colors.black, fontSize: 16.0, fontWeight: FontWeight.bold),), 237 | ), 238 | Container( 239 | margin: EdgeInsets.only(top: 8.0), 240 | child: Row( 241 | children: [ 242 | Container( 243 | padding: EdgeInsets.all(5.0), 244 | color: HexColor("#de9756"), 245 | child: new Text('80%', 246 | style: new TextStyle(color: HexColor("#c77031"), fontSize: 12.0, fontWeight: FontWeight.bold),), 247 | ), 248 | Container( 249 | padding: EdgeInsets.all(5.0), 250 | margin: EdgeInsets.only(left: 10.0), 251 | color: HexColor("#dee9db"), 252 | child: new Text('Import', 253 | style: new TextStyle(color: HexColor("#697e61"), fontSize: 12.0, fontWeight: FontWeight.bold),), 254 | ), 255 | ], 256 | ) 257 | ), 258 | Container( 259 | child: Row( 260 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 261 | children: [ 262 | Container( 263 | 264 | child: new Text('\$18.78', 265 | style: new TextStyle(color: HexColor("#c77031"), fontSize: 20.0, fontWeight: FontWeight.bold),), 266 | ), 267 | Container( 268 | decoration: BoxDecoration( 269 | color: HexColor("#57884b"), 270 | shape: BoxShape.circle 271 | ), 272 | child: IconButton(icon: Icon(Icons.shopping_cart, color: Colors.white,size: 24.0,), onPressed: (){ 273 | 274 | }), 275 | ), 276 | ], 277 | ) 278 | ), 279 | 280 | 281 | ], 282 | ), 283 | )), 284 | ], 285 | ), 286 | ), 287 | ) 288 | ], 289 | ), 290 | bottomNavigationBar: BottomNavigationBar( 291 | onTap:(int pos){ 292 | // Position 293 | 294 | if(pos == 0){ 295 | Navigator.push(context,MaterialPageRoute(builder: (context)=>new HomeScreen())); 296 | }else if(pos == 1){ 297 | Navigator.push(context,MaterialPageRoute(builder: (context)=>new PlatterScreen())); 298 | }else{ 299 | Navigator.push(context,MaterialPageRoute(builder: (context)=>new MyScreen())); 300 | } 301 | },selectedLabelStyle: new TextStyle(color: HexColor("#1A4513"), fontWeight: FontWeight.bold), 302 | selectedItemColor: HexColor("#1A4513"), 303 | selectedIconTheme: IconThemeData(color:HexColor("#1A4513")), 304 | currentIndex: 1, 305 | items: [ 306 | BottomNavigationBarItem(icon: Icon(Icons.home,), title: new Text('Home')), 307 | BottomNavigationBarItem(icon: Icon(Icons.dashboard,), title: new Text('Platter')), 308 | BottomNavigationBarItem(icon: Icon(Icons.person,), title: new Text('My')), 309 | ]), 310 | ); 311 | } 312 | } 313 | 314 | class HexColor extends Color { 315 | static int _getColorFromHex(String hexColor) { 316 | hexColor = hexColor.toUpperCase().replaceAll("#", ""); 317 | if (hexColor.length == 6) { 318 | hexColor = "FF" + hexColor; 319 | } 320 | return int.parse(hexColor, radix: 16); 321 | } 322 | 323 | HexColor(final String hexColor) : super(_getColorFromHex(hexColor)); 324 | } 325 | -------------------------------------------------------------------------------- /lib/HomeScreen.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:fruit_juice_app/CurveWidget.dart'; 3 | import 'package:fruit_juice_app/MyScreen.dart'; 4 | import 'package:fruit_juice_app/PlatterScreen.dart'; 5 | 6 | class HomeScreen extends StatefulWidget { 7 | @override 8 | _HomeScreenState createState() => _HomeScreenState(); 9 | } 10 | 11 | class _HomeScreenState extends State { 12 | @override 13 | Widget build(BuildContext context) { 14 | return Scaffold( 15 | body:new Column(children: [ 16 | 17 | new Container( 18 | child: new Stack(children: [ 19 | 20 | CurveWidget(), 21 | 22 | new Container( 23 | height: 330, 24 | child: new Column( 25 | children: [ 26 | 27 | new Container( 28 | margin: EdgeInsets.only(top:80.0), 29 | padding: EdgeInsets.only(left: 20.0, right:20.0), 30 | child: new Row( 31 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 32 | crossAxisAlignment: CrossAxisAlignment.start, 33 | 34 | children: [ 35 | new Container(child: new Row(children: [ 36 | new Container( 37 | height: 70, 38 | width: 70, 39 | decoration: BoxDecoration( 40 | shape: BoxShape.circle, 41 | border: Border.all(color: HexColor("#95AF8E"), width: 4.0) 42 | ), 43 | child:CircleAvatar( 44 | backgroundImage: AssetImage('images/girl.jpg'), 45 | backgroundColor: Colors.transparent, 46 | ) 47 | ), 48 | SizedBox(width: 10.0,), 49 | new Container( 50 | 51 | child: new Column( 52 | mainAxisAlignment: MainAxisAlignment.start, 53 | crossAxisAlignment: CrossAxisAlignment.start, 54 | children: [ 55 | new Text('Michael', style: new TextStyle(color: Colors.white, fontSize: 24.0,fontWeight: FontWeight.bold),), 56 | SizedBox(height: 5.0,), 57 | 58 | new Container( 59 | padding: EdgeInsets.only(left: 10.0, right:10.0, top:2.0, bottom: 2.0), 60 | decoration: BoxDecoration( 61 | color: HexColor("#95AF8E"), 62 | borderRadius: BorderRadius.circular(20.0), 63 | border: Border.all(color: HexColor("#95AF8E"), width: 4.0) 64 | ), 65 | child:new Text('Vip 5', style: new TextStyle(color: Colors.white, fontSize: 14,),), 66 | ) 67 | 68 | 69 | ],) 70 | ), 71 | ],),), 72 | 73 | new Container( 74 | child: new Row(children: [ 75 | IconButton( 76 | icon: Icon(Icons.poll, size:28.0,color: Colors.white), 77 | ), 78 | IconButton( 79 | icon: Icon(Icons.notifications, size:28.0,color: Colors.white), 80 | ), 81 | ], 82 | )) 83 | ], 84 | ), 85 | ), 86 | 87 | new Container( 88 | 89 | margin: EdgeInsets.only(top:20.0), 90 | padding: EdgeInsets.only(left: 20.0, right:20.0), 91 | child: new Row( 92 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 93 | children: [ 94 | new Container( 95 | child: new Column(children: [ 96 | new Text('399', style: new TextStyle(color: Colors.white, fontSize: 18,fontWeight: FontWeight.bold),), 97 | SizedBox(height: 5.0,), 98 | new Text('Integral', style: new TextStyle(color: Colors.white, fontSize: 16,),), 99 | ],) 100 | ), 101 | 102 | new Container( 103 | child: new Column(children: [ 104 | new Text('2', style: new TextStyle(color: Colors.white, fontSize: 18,fontWeight: FontWeight.bold),), 105 | SizedBox(height: 5.0,), 106 | new Text('Coupons', style: new TextStyle(color: Colors.white, fontSize: 16,),), 107 | ],) 108 | ), 109 | new Container( 110 | child: new Column(children: [ 111 | new Text('2.6', style: new TextStyle(color: Colors.white, fontSize: 18,fontWeight: FontWeight.bold),), 112 | SizedBox(height: 5.0,), 113 | new Text('Wallet', style: new TextStyle(color: Colors.white, fontSize: 16,),), 114 | ],) 115 | ) 116 | ], 117 | ) 118 | ), 119 | 120 | 121 | new Container( 122 | height: 110.0, 123 | width: MediaQuery.of(context).size.width - 30, 124 | child:ClipPath( 125 | child:new Container( 126 | height: 80.0, 127 | width: MediaQuery.of(context).size.width - 40, 128 | margin: EdgeInsets.only(left: 15.0, right:15.0, top:20.0), 129 | padding: EdgeInsets.all(10.0), 130 | decoration: BoxDecoration( 131 | color: HexColor("#1A4513"), 132 | borderRadius: BorderRadius.circular(5.0) 133 | ), 134 | child:new Column( 135 | mainAxisAlignment: MainAxisAlignment.start, 136 | crossAxisAlignment: CrossAxisAlignment.start, 137 | children: [ 138 | new Text('Silver member', style:new TextStyle(color: HexColor("#6C945E"), fontSize: 30.0, fontWeight: FontWeight.bold)) 139 | ], 140 | ) 141 | 142 | ), 143 | clipper: CurveClipper(), 144 | ) 145 | ), 146 | 147 | 148 | 149 | ], 150 | ), 151 | ), 152 | 153 | 154 | 155 | ],), 156 | ), 157 | 158 | new Card( 159 | margin: EdgeInsets.only(left: 20.0, right:20.0), 160 | child: new Column( 161 | children: [ 162 | 163 | SizedBox(height:20.0), 164 | new Container( 165 | padding: EdgeInsets.only(left: 20.0, right:20.0), 166 | child: new Row( 167 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 168 | children: [ 169 | 170 | new Text('My Order', style: new TextStyle(color: Colors.black, fontSize: 18.0, fontWeight: FontWeight.bold),), 171 | new Text('All orders', style: new TextStyle(color: Colors.grey, fontSize: 18.0, fontWeight: FontWeight.bold),), 172 | 173 | 174 | ], 175 | ), 176 | ), 177 | SizedBox(height:20.0), 178 | Divider(), 179 | new Container( 180 | height: 100.0, 181 | child:ListView( 182 | scrollDirection: Axis.horizontal, 183 | padding: EdgeInsets.only(left: 25.0,right: 25.0), 184 | children: [ 185 | new Container( 186 | margin: EdgeInsets.only(right: 30.0), 187 | child: new Column(children: [ 188 | new Image( 189 | image: AssetImage('images/payment.png'),width: 50.0, 190 | ), 191 | SizedBox(height: 5.0,), 192 | new Text('Payment', style: new TextStyle(color: Colors.black, fontSize: 16,fontWeight: FontWeight.bold),), 193 | ],) 194 | ), 195 | 196 | new Container( 197 | margin: EdgeInsets.only(right: 35.0, top: 5.0), 198 | child: new Column(children: [ 199 | new Image( 200 | image: AssetImage('images/STOCK.png'),width: 44.0, 201 | ), 202 | SizedBox(height: 5.0,), 203 | new Text('Stock', style: new TextStyle(color: Colors.black, fontSize: 16,fontWeight: FontWeight.bold),), 204 | ],) 205 | ), 206 | 207 | new Container( 208 | margin: EdgeInsets.only(right: 30.0), 209 | child: new Column(children: [ 210 | new Image( 211 | image: AssetImage('images/DISTRIBUTION.png'),width: 50.0, 212 | ), 213 | SizedBox(height: 5.0,), 214 | new Text('Distribution', style: new TextStyle(color: Colors.black, fontSize: 16, fontWeight: FontWeight.bold),), 215 | ],) 216 | ), 217 | 218 | new Container( 219 | margin: EdgeInsets.only(right: 10.0), 220 | child: new Column(children: [ 221 | new Image( 222 | image: AssetImage('images/store.png'),width: 41.0, 223 | ), 224 | SizedBox(height: 5.0,), 225 | new Text('Store', style: new TextStyle(color: Colors.black, fontSize: 16,fontWeight: FontWeight.bold),), 226 | ],) 227 | ), 228 | ], 229 | ) 230 | ) 231 | ], 232 | ), 233 | ), 234 | 235 | new Card( 236 | margin: EdgeInsets.only(left: 20.0, right:20.0, top:20.0), 237 | child: new Column( 238 | children: [ 239 | 240 | SizedBox(height:20.0), 241 | new Container( 242 | padding: EdgeInsets.only(left: 20.0, right:20.0), 243 | child: new Row( 244 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 245 | children: [ 246 | 247 | new Text('My Service', style: new TextStyle(color: Colors.black, fontSize: 18.0, fontWeight: FontWeight.bold),), 248 | 249 | 250 | ], 251 | ), 252 | ), 253 | SizedBox(height:20.0), 254 | Divider(), 255 | new Container( 256 | 257 | padding: EdgeInsets.only(left: 15.0,right: 15.0), 258 | child:Row( 259 | children: [ 260 | new Container( 261 | margin: EdgeInsets.only(right: 30.0), 262 | child: new Column(children: [ 263 | new Image( 264 | image: AssetImage('images/recharge.png'),width: 40.0, 265 | ), 266 | SizedBox(height: 5.0,), 267 | new Text('Recharge', style: new TextStyle(color: Colors.black, fontSize: 12,fontWeight: FontWeight.bold),), 268 | ],) 269 | ), 270 | 271 | new Container( 272 | margin: EdgeInsets.only(right: 35.0, top: 5.0), 273 | child: new Column(children: [ 274 | new Image( 275 | image: AssetImage('images/enveloppe.png'),width: 32.0, 276 | ), 277 | SizedBox(height: 5.0,), 278 | new Text('Envelope', style: new TextStyle(color: Colors.black, fontSize: 12,fontWeight: FontWeight.bold),), 279 | ],) 280 | ), 281 | 282 | new Container( 283 | margin: EdgeInsets.only(right: 30.0), 284 | child: new Column(children: [ 285 | new Image( 286 | image: AssetImage('images/SIGN.png'),width: 35.0, 287 | ), 288 | SizedBox(height: 5.0,), 289 | new Text('Sign', style: new TextStyle(color: Colors.black, fontSize: 12, fontWeight: FontWeight.bold),), 290 | ],) 291 | ), 292 | 293 | new Container( 294 | margin: EdgeInsets.only(right: 10.0), 295 | child: new Column(children: [ 296 | new Image( 297 | image: AssetImage('images/ADRESSE.png'),width: 35.0, 298 | ), 299 | SizedBox(height: 5.0,), 300 | new Text('Address', style: new TextStyle(color: Colors.black, fontSize: 12,fontWeight: FontWeight.bold),), 301 | ],) 302 | ), 303 | ], 304 | ) 305 | ), 306 | new Container( 307 | 308 | padding: EdgeInsets.only(left: 25.0,right: 25.0, bottom: 10.0, top:10.0), 309 | child:Row( 310 | children: [ 311 | new Container( 312 | margin: EdgeInsets.only(right: 30.0), 313 | child: new Column(children: [ 314 | new Image( 315 | image: AssetImage('images/CUSTOMER.png'),width: 35.0, 316 | ), 317 | SizedBox(height: 5.0,), 318 | new Text('Customer', style: new TextStyle(color: Colors.black, fontSize: 12,fontWeight: FontWeight.bold),), 319 | ],) 320 | ), 321 | 322 | new Container( 323 | margin: EdgeInsets.only(right: 35.0, top: 5.0), 324 | child: new Column(children: [ 325 | new Image( 326 | image: AssetImage('images/Setting.png'),width: 35.0, 327 | ), 328 | SizedBox(height: 5.0,), 329 | new Text('Set', style: new TextStyle(color: Colors.black, fontSize: 12,fontWeight: FontWeight.bold),), 330 | ],) 331 | ), 332 | 333 | 334 | ], 335 | ) 336 | ) 337 | ], 338 | ), 339 | ) 340 | 341 | ],), 342 | bottomNavigationBar: BottomNavigationBar( 343 | onTap:(int pos){ 344 | // Position 345 | 346 | 347 | if(pos == 0){ 348 | Navigator.push(context,MaterialPageRoute(builder: (context)=>new HomeScreen())); 349 | }else if(pos == 1){ 350 | Navigator.push(context,MaterialPageRoute(builder: (context)=>new PlatterScreen())); 351 | }else{ 352 | Navigator.push(context,MaterialPageRoute(builder: (context)=>new MyScreen())); 353 | } 354 | },selectedLabelStyle: new TextStyle(color: HexColor("#1A4513"), fontWeight: FontWeight.bold), 355 | selectedItemColor: HexColor("#1A4513"), 356 | selectedIconTheme: IconThemeData(color:HexColor("#1A4513")), 357 | items: [ 358 | BottomNavigationBarItem(icon: Icon(Icons.home,), title: new Text('Home')), 359 | BottomNavigationBarItem(icon: Icon(Icons.dashboard,), title: new Text('Platter')), 360 | BottomNavigationBarItem(icon: Icon(Icons.person,), title: new Text('My')), 361 | ]), 362 | ); 363 | } 364 | } 365 | 366 | class HexColor extends Color { 367 | static int _getColorFromHex(String hexColor) { 368 | hexColor = hexColor.toUpperCase().replaceAll("#", ""); 369 | if (hexColor.length == 6) { 370 | hexColor = "FF" + hexColor; 371 | } 372 | return int.parse(hexColor, radix: 16); 373 | } 374 | 375 | HexColor(final String hexColor) : super(_getColorFromHex(hexColor)); 376 | } 377 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; 11 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; 12 | 3B80C3941E831B6300D905FE /* App.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; }; 13 | 3B80C3951E831B6300D905FE /* App.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 14 | 9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; }; 15 | 9705A1C71CF904A300538489 /* Flutter.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 16 | 9740EEB41CF90195004384FC /* Debug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 9740EEB21CF90195004384FC /* Debug.xcconfig */; }; 17 | 978B8F6F1D3862AE00F588F7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */; }; 18 | 97C146F31CF9000F007C117D /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 97C146F21CF9000F007C117D /* main.m */; }; 19 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; 20 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; 21 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; 22 | /* End PBXBuildFile section */ 23 | 24 | /* Begin PBXCopyFilesBuildPhase section */ 25 | 9705A1C41CF9048500538489 /* Embed Frameworks */ = { 26 | isa = PBXCopyFilesBuildPhase; 27 | buildActionMask = 2147483647; 28 | dstPath = ""; 29 | dstSubfolderSpec = 10; 30 | files = ( 31 | 3B80C3951E831B6300D905FE /* App.framework in Embed Frameworks */, 32 | 9705A1C71CF904A300538489 /* Flutter.framework in Embed Frameworks */, 33 | ); 34 | name = "Embed Frameworks"; 35 | runOnlyForDeploymentPostprocessing = 0; 36 | }; 37 | /* End PBXCopyFilesBuildPhase section */ 38 | 39 | /* Begin PBXFileReference section */ 40 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; 41 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; 42 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; 43 | 3B80C3931E831B6300D905FE /* App.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = App.framework; path = Flutter/App.framework; sourceTree = ""; }; 44 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; 45 | 7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; 46 | 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; 47 | 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; 48 | 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; 49 | 9740EEBA1CF902C7004384FC /* Flutter.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Flutter.framework; path = Flutter/Flutter.framework; sourceTree = ""; }; 50 | 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; 51 | 97C146F21CF9000F007C117D /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 52 | 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 53 | 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 54 | 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 55 | 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 56 | /* End PBXFileReference section */ 57 | 58 | /* Begin PBXFrameworksBuildPhase section */ 59 | 97C146EB1CF9000F007C117D /* Frameworks */ = { 60 | isa = PBXFrameworksBuildPhase; 61 | buildActionMask = 2147483647; 62 | files = ( 63 | 9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */, 64 | 3B80C3941E831B6300D905FE /* App.framework in Frameworks */, 65 | ); 66 | runOnlyForDeploymentPostprocessing = 0; 67 | }; 68 | /* End PBXFrameworksBuildPhase section */ 69 | 70 | /* Begin PBXGroup section */ 71 | 9740EEB11CF90186004384FC /* Flutter */ = { 72 | isa = PBXGroup; 73 | children = ( 74 | 3B80C3931E831B6300D905FE /* App.framework */, 75 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, 76 | 9740EEBA1CF902C7004384FC /* Flutter.framework */, 77 | 9740EEB21CF90195004384FC /* Debug.xcconfig */, 78 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, 79 | 9740EEB31CF90195004384FC /* Generated.xcconfig */, 80 | ); 81 | name = Flutter; 82 | sourceTree = ""; 83 | }; 84 | 97C146E51CF9000F007C117D = { 85 | isa = PBXGroup; 86 | children = ( 87 | 9740EEB11CF90186004384FC /* Flutter */, 88 | 97C146F01CF9000F007C117D /* Runner */, 89 | 97C146EF1CF9000F007C117D /* Products */, 90 | CF3B75C9A7D2FA2A4C99F110 /* Frameworks */, 91 | ); 92 | sourceTree = ""; 93 | }; 94 | 97C146EF1CF9000F007C117D /* Products */ = { 95 | isa = PBXGroup; 96 | children = ( 97 | 97C146EE1CF9000F007C117D /* Runner.app */, 98 | ); 99 | name = Products; 100 | sourceTree = ""; 101 | }; 102 | 97C146F01CF9000F007C117D /* Runner */ = { 103 | isa = PBXGroup; 104 | children = ( 105 | 7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */, 106 | 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */, 107 | 97C146FA1CF9000F007C117D /* Main.storyboard */, 108 | 97C146FD1CF9000F007C117D /* Assets.xcassets */, 109 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, 110 | 97C147021CF9000F007C117D /* Info.plist */, 111 | 97C146F11CF9000F007C117D /* Supporting Files */, 112 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, 113 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, 114 | ); 115 | path = Runner; 116 | sourceTree = ""; 117 | }; 118 | 97C146F11CF9000F007C117D /* Supporting Files */ = { 119 | isa = PBXGroup; 120 | children = ( 121 | 97C146F21CF9000F007C117D /* main.m */, 122 | ); 123 | name = "Supporting Files"; 124 | sourceTree = ""; 125 | }; 126 | /* End PBXGroup section */ 127 | 128 | /* Begin PBXNativeTarget section */ 129 | 97C146ED1CF9000F007C117D /* Runner */ = { 130 | isa = PBXNativeTarget; 131 | buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; 132 | buildPhases = ( 133 | 9740EEB61CF901F6004384FC /* Run Script */, 134 | 97C146EA1CF9000F007C117D /* Sources */, 135 | 97C146EB1CF9000F007C117D /* Frameworks */, 136 | 97C146EC1CF9000F007C117D /* Resources */, 137 | 9705A1C41CF9048500538489 /* Embed Frameworks */, 138 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */, 139 | ); 140 | buildRules = ( 141 | ); 142 | dependencies = ( 143 | ); 144 | name = Runner; 145 | productName = Runner; 146 | productReference = 97C146EE1CF9000F007C117D /* Runner.app */; 147 | productType = "com.apple.product-type.application"; 148 | }; 149 | /* End PBXNativeTarget section */ 150 | 151 | /* Begin PBXProject section */ 152 | 97C146E61CF9000F007C117D /* Project object */ = { 153 | isa = PBXProject; 154 | attributes = { 155 | LastUpgradeCheck = 1020; 156 | ORGANIZATIONNAME = "The Chromium Authors"; 157 | TargetAttributes = { 158 | 97C146ED1CF9000F007C117D = { 159 | CreatedOnToolsVersion = 7.3.1; 160 | }; 161 | }; 162 | }; 163 | buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; 164 | compatibilityVersion = "Xcode 3.2"; 165 | developmentRegion = en; 166 | hasScannedForEncodings = 0; 167 | knownRegions = ( 168 | en, 169 | Base, 170 | ); 171 | mainGroup = 97C146E51CF9000F007C117D; 172 | productRefGroup = 97C146EF1CF9000F007C117D /* Products */; 173 | projectDirPath = ""; 174 | projectRoot = ""; 175 | targets = ( 176 | 97C146ED1CF9000F007C117D /* Runner */, 177 | ); 178 | }; 179 | /* End PBXProject section */ 180 | 181 | /* Begin PBXResourcesBuildPhase section */ 182 | 97C146EC1CF9000F007C117D /* Resources */ = { 183 | isa = PBXResourcesBuildPhase; 184 | buildActionMask = 2147483647; 185 | files = ( 186 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, 187 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, 188 | 9740EEB41CF90195004384FC /* Debug.xcconfig in Resources */, 189 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, 190 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, 191 | ); 192 | runOnlyForDeploymentPostprocessing = 0; 193 | }; 194 | /* End PBXResourcesBuildPhase section */ 195 | 196 | /* Begin PBXShellScriptBuildPhase section */ 197 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { 198 | isa = PBXShellScriptBuildPhase; 199 | buildActionMask = 2147483647; 200 | files = ( 201 | ); 202 | inputPaths = ( 203 | ); 204 | name = "Thin Binary"; 205 | outputPaths = ( 206 | ); 207 | runOnlyForDeploymentPostprocessing = 0; 208 | shellPath = /bin/sh; 209 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" thin"; 210 | }; 211 | 9740EEB61CF901F6004384FC /* Run Script */ = { 212 | isa = PBXShellScriptBuildPhase; 213 | buildActionMask = 2147483647; 214 | files = ( 215 | ); 216 | inputPaths = ( 217 | ); 218 | name = "Run Script"; 219 | outputPaths = ( 220 | ); 221 | runOnlyForDeploymentPostprocessing = 0; 222 | shellPath = /bin/sh; 223 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; 224 | }; 225 | /* End PBXShellScriptBuildPhase section */ 226 | 227 | /* Begin PBXSourcesBuildPhase section */ 228 | 97C146EA1CF9000F007C117D /* Sources */ = { 229 | isa = PBXSourcesBuildPhase; 230 | buildActionMask = 2147483647; 231 | files = ( 232 | 978B8F6F1D3862AE00F588F7 /* AppDelegate.m in Sources */, 233 | 97C146F31CF9000F007C117D /* main.m in Sources */, 234 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, 235 | ); 236 | runOnlyForDeploymentPostprocessing = 0; 237 | }; 238 | /* End PBXSourcesBuildPhase section */ 239 | 240 | /* Begin PBXVariantGroup section */ 241 | 97C146FA1CF9000F007C117D /* Main.storyboard */ = { 242 | isa = PBXVariantGroup; 243 | children = ( 244 | 97C146FB1CF9000F007C117D /* Base */, 245 | ); 246 | name = Main.storyboard; 247 | sourceTree = ""; 248 | }; 249 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { 250 | isa = PBXVariantGroup; 251 | children = ( 252 | 97C147001CF9000F007C117D /* Base */, 253 | ); 254 | name = LaunchScreen.storyboard; 255 | sourceTree = ""; 256 | }; 257 | /* End PBXVariantGroup section */ 258 | 259 | /* Begin XCBuildConfiguration section */ 260 | 249021D3217E4FDB00AE95B9 /* Profile */ = { 261 | isa = XCBuildConfiguration; 262 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 263 | buildSettings = { 264 | ALWAYS_SEARCH_USER_PATHS = NO; 265 | CLANG_ANALYZER_NONNULL = YES; 266 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 267 | CLANG_CXX_LIBRARY = "libc++"; 268 | CLANG_ENABLE_MODULES = YES; 269 | CLANG_ENABLE_OBJC_ARC = YES; 270 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 271 | CLANG_WARN_BOOL_CONVERSION = YES; 272 | CLANG_WARN_COMMA = YES; 273 | CLANG_WARN_CONSTANT_CONVERSION = YES; 274 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 275 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 276 | CLANG_WARN_EMPTY_BODY = YES; 277 | CLANG_WARN_ENUM_CONVERSION = YES; 278 | CLANG_WARN_INFINITE_RECURSION = YES; 279 | CLANG_WARN_INT_CONVERSION = YES; 280 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 281 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 282 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 283 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 284 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 285 | CLANG_WARN_STRICT_PROTOTYPES = YES; 286 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 287 | CLANG_WARN_UNREACHABLE_CODE = YES; 288 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 289 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 290 | COPY_PHASE_STRIP = NO; 291 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 292 | ENABLE_NS_ASSERTIONS = NO; 293 | ENABLE_STRICT_OBJC_MSGSEND = YES; 294 | GCC_C_LANGUAGE_STANDARD = gnu99; 295 | GCC_NO_COMMON_BLOCKS = YES; 296 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 297 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 298 | GCC_WARN_UNDECLARED_SELECTOR = YES; 299 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 300 | GCC_WARN_UNUSED_FUNCTION = YES; 301 | GCC_WARN_UNUSED_VARIABLE = YES; 302 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 303 | MTL_ENABLE_DEBUG_INFO = NO; 304 | SDKROOT = iphoneos; 305 | TARGETED_DEVICE_FAMILY = "1,2"; 306 | VALIDATE_PRODUCT = YES; 307 | }; 308 | name = Profile; 309 | }; 310 | 249021D4217E4FDB00AE95B9 /* Profile */ = { 311 | isa = XCBuildConfiguration; 312 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 313 | buildSettings = { 314 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 315 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 316 | DEVELOPMENT_TEAM = S8QB4VV633; 317 | ENABLE_BITCODE = NO; 318 | FRAMEWORK_SEARCH_PATHS = ( 319 | "$(inherited)", 320 | "$(PROJECT_DIR)/Flutter", 321 | ); 322 | INFOPLIST_FILE = Runner/Info.plist; 323 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 324 | LIBRARY_SEARCH_PATHS = ( 325 | "$(inherited)", 326 | "$(PROJECT_DIR)/Flutter", 327 | ); 328 | PRODUCT_BUNDLE_IDENTIFIER = com.angebagui.fruitJuiceApp; 329 | PRODUCT_NAME = "$(TARGET_NAME)"; 330 | VERSIONING_SYSTEM = "apple-generic"; 331 | }; 332 | name = Profile; 333 | }; 334 | 97C147031CF9000F007C117D /* Debug */ = { 335 | isa = XCBuildConfiguration; 336 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 337 | buildSettings = { 338 | ALWAYS_SEARCH_USER_PATHS = NO; 339 | CLANG_ANALYZER_NONNULL = YES; 340 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 341 | CLANG_CXX_LIBRARY = "libc++"; 342 | CLANG_ENABLE_MODULES = YES; 343 | CLANG_ENABLE_OBJC_ARC = YES; 344 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 345 | CLANG_WARN_BOOL_CONVERSION = YES; 346 | CLANG_WARN_COMMA = YES; 347 | CLANG_WARN_CONSTANT_CONVERSION = YES; 348 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 349 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 350 | CLANG_WARN_EMPTY_BODY = YES; 351 | CLANG_WARN_ENUM_CONVERSION = YES; 352 | CLANG_WARN_INFINITE_RECURSION = YES; 353 | CLANG_WARN_INT_CONVERSION = YES; 354 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 355 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 356 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 357 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 358 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 359 | CLANG_WARN_STRICT_PROTOTYPES = YES; 360 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 361 | CLANG_WARN_UNREACHABLE_CODE = YES; 362 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 363 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 364 | COPY_PHASE_STRIP = NO; 365 | DEBUG_INFORMATION_FORMAT = dwarf; 366 | ENABLE_STRICT_OBJC_MSGSEND = YES; 367 | ENABLE_TESTABILITY = YES; 368 | GCC_C_LANGUAGE_STANDARD = gnu99; 369 | GCC_DYNAMIC_NO_PIC = NO; 370 | GCC_NO_COMMON_BLOCKS = YES; 371 | GCC_OPTIMIZATION_LEVEL = 0; 372 | GCC_PREPROCESSOR_DEFINITIONS = ( 373 | "DEBUG=1", 374 | "$(inherited)", 375 | ); 376 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 377 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 378 | GCC_WARN_UNDECLARED_SELECTOR = YES; 379 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 380 | GCC_WARN_UNUSED_FUNCTION = YES; 381 | GCC_WARN_UNUSED_VARIABLE = YES; 382 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 383 | MTL_ENABLE_DEBUG_INFO = YES; 384 | ONLY_ACTIVE_ARCH = YES; 385 | SDKROOT = iphoneos; 386 | TARGETED_DEVICE_FAMILY = "1,2"; 387 | }; 388 | name = Debug; 389 | }; 390 | 97C147041CF9000F007C117D /* Release */ = { 391 | isa = XCBuildConfiguration; 392 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 393 | buildSettings = { 394 | ALWAYS_SEARCH_USER_PATHS = NO; 395 | CLANG_ANALYZER_NONNULL = YES; 396 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 397 | CLANG_CXX_LIBRARY = "libc++"; 398 | CLANG_ENABLE_MODULES = YES; 399 | CLANG_ENABLE_OBJC_ARC = YES; 400 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 401 | CLANG_WARN_BOOL_CONVERSION = YES; 402 | CLANG_WARN_COMMA = YES; 403 | CLANG_WARN_CONSTANT_CONVERSION = YES; 404 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 405 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 406 | CLANG_WARN_EMPTY_BODY = YES; 407 | CLANG_WARN_ENUM_CONVERSION = YES; 408 | CLANG_WARN_INFINITE_RECURSION = YES; 409 | CLANG_WARN_INT_CONVERSION = YES; 410 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 411 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 412 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 413 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 414 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 415 | CLANG_WARN_STRICT_PROTOTYPES = YES; 416 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 417 | CLANG_WARN_UNREACHABLE_CODE = YES; 418 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 419 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 420 | COPY_PHASE_STRIP = NO; 421 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 422 | ENABLE_NS_ASSERTIONS = NO; 423 | ENABLE_STRICT_OBJC_MSGSEND = YES; 424 | GCC_C_LANGUAGE_STANDARD = gnu99; 425 | GCC_NO_COMMON_BLOCKS = YES; 426 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 427 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 428 | GCC_WARN_UNDECLARED_SELECTOR = YES; 429 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 430 | GCC_WARN_UNUSED_FUNCTION = YES; 431 | GCC_WARN_UNUSED_VARIABLE = YES; 432 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 433 | MTL_ENABLE_DEBUG_INFO = NO; 434 | SDKROOT = iphoneos; 435 | TARGETED_DEVICE_FAMILY = "1,2"; 436 | VALIDATE_PRODUCT = YES; 437 | }; 438 | name = Release; 439 | }; 440 | 97C147061CF9000F007C117D /* Debug */ = { 441 | isa = XCBuildConfiguration; 442 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 443 | buildSettings = { 444 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 445 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 446 | ENABLE_BITCODE = NO; 447 | FRAMEWORK_SEARCH_PATHS = ( 448 | "$(inherited)", 449 | "$(PROJECT_DIR)/Flutter", 450 | ); 451 | INFOPLIST_FILE = Runner/Info.plist; 452 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 453 | LIBRARY_SEARCH_PATHS = ( 454 | "$(inherited)", 455 | "$(PROJECT_DIR)/Flutter", 456 | ); 457 | PRODUCT_BUNDLE_IDENTIFIER = com.angebagui.fruitJuiceApp; 458 | PRODUCT_NAME = "$(TARGET_NAME)"; 459 | VERSIONING_SYSTEM = "apple-generic"; 460 | }; 461 | name = Debug; 462 | }; 463 | 97C147071CF9000F007C117D /* Release */ = { 464 | isa = XCBuildConfiguration; 465 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 466 | buildSettings = { 467 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 468 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 469 | ENABLE_BITCODE = NO; 470 | FRAMEWORK_SEARCH_PATHS = ( 471 | "$(inherited)", 472 | "$(PROJECT_DIR)/Flutter", 473 | ); 474 | INFOPLIST_FILE = Runner/Info.plist; 475 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 476 | LIBRARY_SEARCH_PATHS = ( 477 | "$(inherited)", 478 | "$(PROJECT_DIR)/Flutter", 479 | ); 480 | PRODUCT_BUNDLE_IDENTIFIER = com.angebagui.fruitJuiceApp; 481 | PRODUCT_NAME = "$(TARGET_NAME)"; 482 | VERSIONING_SYSTEM = "apple-generic"; 483 | }; 484 | name = Release; 485 | }; 486 | /* End XCBuildConfiguration section */ 487 | 488 | /* Begin XCConfigurationList section */ 489 | 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { 490 | isa = XCConfigurationList; 491 | buildConfigurations = ( 492 | 97C147031CF9000F007C117D /* Debug */, 493 | 97C147041CF9000F007C117D /* Release */, 494 | 249021D3217E4FDB00AE95B9 /* Profile */, 495 | ); 496 | defaultConfigurationIsVisible = 0; 497 | defaultConfigurationName = Release; 498 | }; 499 | 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { 500 | isa = XCConfigurationList; 501 | buildConfigurations = ( 502 | 97C147061CF9000F007C117D /* Debug */, 503 | 97C147071CF9000F007C117D /* Release */, 504 | 249021D4217E4FDB00AE95B9 /* Profile */, 505 | ); 506 | defaultConfigurationIsVisible = 0; 507 | defaultConfigurationName = Release; 508 | }; 509 | /* End XCConfigurationList section */ 510 | }; 511 | rootObject = 97C146E61CF9000F007C117D /* Project object */; 512 | } 513 | --------------------------------------------------------------------------------