app setup , login and rebistration screen and more

This commit is contained in:
Shaz hemani 2020-12-08 12:58:14 +05:00
commit 1ccff543a1
No known key found for this signature in database
GPG key ID: 976B8B017678D5AC
95 changed files with 3274 additions and 0 deletions

41
.gitignore vendored Normal file
View file

@ -0,0 +1,41 @@
# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/
# IntelliJ related
*.iml
*.ipr
*.iws
.idea/
# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/
# Flutter/Dart/Pub related
**/doc/api/
**/ios/Flutter/.last_build_id
.dart_tool/
.flutter-plugins
.flutter-plugins-dependencies
.packages
.pub-cache/
.pub/
/build/
# Symbolication related
app.*.symbols
# Obfuscation related
app.*.map.json
# Exceptions to above rules.
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages

78
README.md Normal file
View file

@ -0,0 +1,78 @@
# Robo-advisory
## Directory Structure
.
├── models # Model classes
├── providers # Provides for State Management
├── screens # APP Screens/Views
│ ├── sample screen # Screen separate folder for local widget
│ ├── local_widgets
│ ├── sample_screen.dart
├── services # Front-to-backend methods such as APIs
├── widgets # wWdgets used in multiple different views
├── utils # Helper Methods
├── theme # Theme Configuration
├── main.dart # Entry Point
└── README.md
## Enviroment Setup
### Step 1: (Some Basic Steps):
- #### Install Homebrew: (Package Manager)
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
- #### Install GIT
brew install git
### Step 2: (Setup Android Studio):
- #### Download Android Studio
The fastest way is to download and install Android Studio.
Android Studio is available at:https://developer.android.com/studio/index.html
- #### Install Android Studio
To install Android Studio on your Mac, proceed as follows
1. Launch the Android Studio DMG file.
2. Drag a nd drop Android Studio into the Applications folder, then launch Android Studio.
3. Select whether you want to import previous Android Studio settings, then click OK.
4. The Android Studio Setup Wizard guides you though the rest of the setup, which includes downloading Android SDK components that are required for development. Click the Next button.
5. Select a Standard installation and click Next.
6. On the Verify Settings window, click Finish.
Once installed, you get the Welcome to Android Studio window.
- #### Configure SDK Manager
1. In the left pane select Android SDK. On the right pane, select the SDK Platforms Tab and select the SDKs for API level.
2. Click the OK button to download and install these Android SDKs.
3. After accepting the licence you should see the following screen:
Wait until all components are installed
- #### Setup the ANDROID_HOME system variable
1. Open the SDK Manager and make a copy of the Android SDK Location
2. Open the Terminal app and type the following command:
```export ANDROID_HOME=/Users/HDO/Library/Android/sdk```
To check the `ANDROID_HOME` is correctly setup type the following commands:
```
cd $ANDROID_HOME
ls
```
You should see the following result:
```
add-ons extras patcher platforms system-images
build-tools licenses platform-tools sources tools
```
- #### Persist the ANDROID_HOME system variable for the current user
Add Android Studio home path into your `.zsh` or `.bash` profile
### Step 3: (Install Flutter):
1. Download Flutter SDK
2. Add the flutter tool to your path
For SDK and instructions: https://flutter.dev/docs/get-started/install/macos
### Step 4: (Install the Flutter and Dart plugins):
To install these:
1. Start Android Studio.
2. Open plugin preferences (Preference -> Plugins -> Search (Flutter) [Author: Flutter.dev]).
3. Click Yes when prompted to install the Dart plugin and restart.
### Step 4: (Clone Porject):
- Clone Project Using Git command line tool:
git clone git@github.com:Octek/Robo-advisory.git robo_advisory
cd robo_advisory

11
android/.gitignore vendored Normal file
View file

@ -0,0 +1,11 @@
gradle-wrapper.jar
/.gradle
/captures/
/gradlew
/gradlew.bat
/local.properties
GeneratedPluginRegistrant.java
# Remember to never publicly share your keystore.
# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
key.properties

63
android/app/build.gradle Normal file
View file

@ -0,0 +1,63 @@
def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
localPropertiesFile.withReader('UTF-8') { reader ->
localProperties.load(reader)
}
}
def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '1'
}
def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
flutterVersionName = '1.0'
}
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
android {
compileSdkVersion 29
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
lintOptions {
disable 'InvalidPackage'
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.example.robo_advisory"
minSdkVersion 16
targetSdkVersion 29
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug
}
}
}
flutter {
source '../..'
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}

View file

@ -0,0 +1,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.robo_advisory">
<!-- Flutter needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>

View file

@ -0,0 +1,47 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.robo_advisory">
<!-- io.flutter.app.FlutterApplication is an android.app.Application that
calls FlutterMain.startInitialization(this); in its onCreate method.
In most cases you can leave this as-is, but you if you want to provide
additional functionality it is fine to subclass or reimplement
FlutterApplication and put your custom class here. -->
<application
android:name="io.flutter.app.FlutterApplication"
android:label="robo_advisory"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
<!-- Specifies an Android theme to apply to this Activity as soon as
the Android process has started. This theme is visible to the user
while the Flutter UI initializes. After that, this theme continues
to determine the Window background behind the Flutter UI. -->
<meta-data
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"
/>
<!-- Displays an Android View that continues showing the launch screen
Drawable until Flutter paints its first frame, then this splash
screen fades out. A splash screen is useful to avoid any visual
gap between the end of Android's launch screen and the painting of
Flutter's first frame. -->
<meta-data
android:name="io.flutter.embedding.android.SplashScreenDrawable"
android:resource="@drawable/launch_background"
/>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<!-- Don't delete the meta-data below.
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
<meta-data
android:name="flutterEmbedding"
android:value="2" />
</application>
</manifest>

View file

@ -0,0 +1,6 @@
package com.example.robo_advisory
import io.flutter.embedding.android.FlutterActivity
class MainActivity: FlutterActivity() {
}

View file

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Modify this file to customize your launch splash screen -->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@android:color/white" />
<!-- You can insert your own image assets here -->
<!-- <item>
<bitmap
android:gravity="center"
android:src="@mipmap/launch_image" />
</item> -->
</layer-list>

Binary file not shown.

After

Width:  |  Height:  |  Size: 544 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 442 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 721 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Theme applied to the Android Window while the process is starting -->
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
<!-- Show a splash screen on the activity. Automatically removed when
Flutter draws its first frame -->
<item name="android:windowBackground">@drawable/launch_background</item>
</style>
<!-- Theme applied to the Android Window as soon as the process has started.
This theme determines the color of the Android Window while your
Flutter UI initializes, as well as behind your Flutter UI while its
running.
This Theme is only used starting with V2 of Flutter's Android embedding. -->
<style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar">
<item name="android:windowBackground">@android:color/white</item>
</style>
</resources>

View file

@ -0,0 +1,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.robo_advisory">
<!-- Flutter needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>

31
android/build.gradle Normal file
View file

@ -0,0 +1,31 @@
buildscript {
ext.kotlin_version = '1.3.50'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
task clean(type: Delete) {
delete rootProject.buildDir
}

View file

@ -0,0 +1,4 @@
org.gradle.jvmargs=-Xmx1536M
android.useAndroidX=true
android.enableJetifier=true
android.enableR8=true

View file

@ -0,0 +1,6 @@
#Fri Jun 23 08:50:38 CEST 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-all.zip

11
android/settings.gradle Normal file
View file

@ -0,0 +1,11 @@
include ':app'
def localPropertiesFile = new File(rootProject.projectDir, "local.properties")
def properties = new Properties()
assert localPropertiesFile.exists()
localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) }
def flutterSdkPath = properties.getProperty("flutter.sdk")
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle"

View file

@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 40 41" height="41" width="44">
<path fill="#2F2F2F" d="M21.2552 40.4971H18.7448C16.7144 40.4971 15.0624 38.8452 15.0624 36.8148V35.9655C14.1992 35.6897 13.3605 35.3416 12.5548 34.9246L11.953 35.5265C10.4952 36.9861 8.16016 36.9432 6.74477 35.526L4.97047 33.7518C3.55258 32.3354 3.5118 30.0011 4.97094 28.5436L5.57234 27.9421C5.15539 27.1364 4.80734 26.2979 4.53148 25.4346H3.68227C1.65195 25.4346 0 23.7827 0 21.7523V19.2418C0 17.2114 1.65195 15.5596 3.68234 15.5596H4.53156C4.80742 14.6963 5.15547 13.8577 5.57242 13.052L4.97055 12.4502C3.51227 10.9935 3.5525 8.65895 4.97102 7.24199L6.74547 5.46762C8.16414 4.04699 10.4987 4.01152 11.9536 5.46809L12.5549 6.06941C13.3606 5.65254 14.1993 5.30441 15.0625 5.02855V4.17934C15.0625 2.14895 16.7144 0.49707 18.7448 0.49707H21.2552C23.2856 0.49707 24.9375 2.14895 24.9375 4.17934V5.02863C25.8007 5.30441 26.6394 5.65254 27.4451 6.06949L28.047 5.46762C29.5047 4.00809 31.8398 4.0509 33.2552 5.46816L35.0295 7.24238C36.4473 8.65871 36.4881 10.993 35.029 12.4506L34.4276 13.052C34.8445 13.8577 35.1926 14.6962 35.4684 15.5596H36.3177C38.348 15.5596 40 17.2114 40 19.2418V21.7523C40 23.7827 38.348 25.4346 36.3177 25.4346H35.4684C35.1926 26.2979 34.8445 27.1364 34.4276 27.9421L35.0295 28.544C36.4877 30.0007 36.4475 32.3353 35.029 33.7522L33.2545 35.5266C31.8359 36.9472 29.5013 36.9827 28.0464 35.5261L27.4451 34.9248C26.6394 35.3417 25.8007 35.6898 24.9375 35.9657V36.815C24.9375 38.8452 23.2856 40.4971 21.2552 40.4971ZM12.9466 32.4635C14.0659 33.1254 15.2706 33.6255 16.5272 33.9498C17.0447 34.0833 17.4062 34.55 17.4062 35.0845V36.8148C17.4062 37.5529 18.0068 38.1533 18.7448 38.1533H21.2552C21.9933 38.1533 22.5938 37.5529 22.5938 36.8148V35.0845C22.5938 34.55 22.9554 34.0833 23.4729 33.9498C24.7295 33.6255 25.9341 33.1254 27.0534 32.4635C27.514 32.1911 28.1003 32.2652 28.4787 32.6436L29.7043 33.8693C30.2327 34.3983 31.0813 34.3861 31.5968 33.8698L33.3723 32.0943C33.8866 31.5807 33.9038 30.732 33.3728 30.2018L32.1466 28.9756C31.7684 28.5973 31.6943 28.0109 31.9666 27.5504C32.6285 26.4312 33.1285 25.2265 33.4528 23.9699C33.5864 23.4524 34.0531 23.0909 34.5875 23.0909H36.3177C37.0558 23.0909 37.6563 22.4904 37.6563 21.7524V19.2419C37.6563 18.5039 37.0558 17.9034 36.3177 17.9034H34.5875C34.053 17.9034 33.5864 17.5418 33.4528 17.0244C33.1285 15.7678 32.6284 14.5631 31.9666 13.4439C31.6943 12.9834 31.7684 12.397 32.1466 12.0187L33.3723 10.793C33.9022 10.2638 33.8884 9.41535 33.3728 8.90043L31.5974 7.12504C31.0828 6.60973 30.2341 6.59465 29.7048 7.12457L28.4788 8.35074C28.1005 8.7291 27.5139 8.80316 27.0535 8.53082C25.9342 7.86887 24.7295 7.36879 23.473 7.04449C22.9555 6.91098 22.5939 6.44426 22.5939 5.9098V4.17934C22.5939 3.44129 21.9934 2.84082 21.2553 2.84082H18.7449C18.0069 2.84082 17.4063 3.44129 17.4063 4.17934V5.90965C17.4063 6.4441 17.0448 6.91082 16.5273 7.04434C15.2707 7.36863 14.066 7.86871 12.9467 8.53066C12.4861 8.80293 11.8998 8.72887 11.5215 8.35059L10.2959 7.12488C9.76742 6.59582 8.91875 6.60809 8.40336 7.12434L6.62781 8.89981C6.11359 9.4134 6.09641 10.2621 6.62734 10.7924L7.85352 12.0186C8.2318 12.3968 8.30586 12.9832 8.03359 13.4437C7.37164 14.5629 6.87164 15.7676 6.54734 17.0243C6.41375 17.5418 5.94703 17.9032 5.41266 17.9032H3.68234C2.9443 17.9033 2.34375 18.5038 2.34375 19.2418V21.7523C2.34375 22.4904 2.9443 23.0908 3.68234 23.0908H5.41258C5.94703 23.0908 6.41367 23.4524 6.54727 23.9698C6.87156 25.2264 7.37164 26.4311 8.03352 27.5504C8.30578 28.0108 8.23172 28.5972 7.85344 28.9755L6.62773 30.2012C6.09789 30.7304 6.11172 31.5789 6.62727 32.0938L8.40266 33.8692C8.91727 34.3845 9.76602 34.3996 10.2952 33.8696L11.5213 32.6435C11.8001 32.3648 12.38 32.1283 12.9466 32.4635Z"></path>
<path fill="#2F2F2F" d="M20 29.2002C15.201 29.2002 11.2969 25.296 11.2969 20.4971C11.2969 15.6982 15.201 11.7939 20 11.7939C24.799 11.7939 28.7031 15.6982 28.7031 20.4971C28.7031 25.296 24.799 29.2002 20 29.2002ZM20 14.1377C16.4934 14.1377 13.6406 16.9905 13.6406 20.4971C13.6406 24.0036 16.4934 26.8564 20 26.8564C23.5066 26.8564 26.3594 24.0036 26.3594 20.4971C26.3594 16.9905 23.5066 14.1377 20 14.1377Z"></path>
</svg>

After

Width:  |  Height:  |  Size: 4.1 KiB

View file

@ -0,0 +1,4 @@
<svg width="44" height="41" viewBox="0 0 65 41" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M62.1727 0.649414H1.87644C0.840145 0.649414 0 1.46835 0 2.47848V38.8203C0 39.8305 0.840145 40.6494 1.87644 40.6494H62.1727C63.209 40.6494 64.0492 39.8305 64.0492 38.8203V2.47848C64.0492 1.46835 63.209 0.649414 62.1727 0.649414ZM3.75288 16.0777C10.0168 15.2607 14.9898 10.4133 15.8279 4.30755H48.2211C49.0593 10.4133 54.0322 15.2607 60.2963 16.0777V25.2211C54.0322 26.0381 49.0593 30.8855 48.2211 36.9913H15.8279C14.9898 30.8855 10.0168 26.0381 3.75288 25.2211V16.0777ZM60.2963 12.3722C56.1058 11.6187 52.7958 8.39222 52.0227 4.30755H60.2963V12.3722ZM12.0264 4.30755C11.2534 8.39222 7.94335 11.6187 3.75288 12.3722V4.30755H12.0264ZM3.75288 28.9267C7.94335 29.6801 11.2534 32.9066 12.0264 36.9913H3.75288V28.9267ZM52.0227 36.9913C52.7957 32.9066 56.1058 29.6801 60.2963 28.9267V36.9913H52.0227Z" fill="#2F2F2F"/>
<path d="M34.2076 18.8403C32.8289 18.3652 31.307 17.7936 30.4736 17.1565C30.2986 17.0226 30.2246 16.6509 30.2978 16.2725C30.3379 16.0657 30.5231 15.3747 31.2289 15.1674C32.534 14.7841 33.419 15.2852 33.739 15.5184C34.569 16.1231 35.7448 15.9576 36.3655 15.1485C36.986 14.3395 36.8162 13.1933 35.9861 12.5883C35.6669 12.3557 34.9012 11.865 33.8058 11.5828V11.2163C33.8058 10.2061 32.9656 9.38721 31.9293 9.38721C30.893 9.38721 30.0529 10.2061 30.0529 11.2163V11.6959C28.2848 12.2529 26.9691 13.7368 26.6099 15.5948C26.2715 17.3449 26.8644 19.046 28.1576 20.0347C29.4148 20.9958 31.2071 21.6861 32.9569 22.2891C34.2457 22.7332 34.2843 23.6919 34.1926 24.2237C34.0369 25.1256 33.2585 26.1002 31.9168 26.109C30.4524 26.1187 30.0698 26.0598 28.9778 25.3634C28.1106 24.8104 26.9476 25.0474 26.3803 25.8927C25.813 26.7381 26.0562 27.8716 26.9234 28.4246C28.1133 29.1834 29.0141 29.5267 30.0529 29.6718V30.0818C30.0529 31.0919 30.893 31.9108 31.9293 31.9108C32.9656 31.9108 33.8058 31.0919 33.8058 30.0818V29.478C36.0939 28.7547 37.5571 26.7798 37.8935 24.8301C38.353 22.1656 36.8717 19.7583 34.2076 18.8403Z" fill="#2F2F2F"/>
</svg>

After

Width:  |  Height:  |  Size: 2 KiB

View file

@ -0,0 +1,3 @@
<svg width="44" height="41" viewBox="0 0 43 41" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M41.3769 18.4206L37.8217 15.1812V4.43978C37.8217 3.75633 37.2676 3.20218 36.5841 3.20218H28.0264C27.343 3.20218 26.7888 3.75625 26.7888 4.43978V5.12808L22.4953 1.21586C21.6665 0.460572 20.4167 0.460654 19.5883 1.21578L0.706697 18.4207C0.0428931 19.0256 -0.176484 19.9577 0.147856 20.7952C0.472278 21.6327 1.26217 22.1738 2.16031 22.1738H5.17595V39.4117C5.17595 40.0952 5.73002 40.6493 6.41356 40.6493H16.7629C17.4464 40.6493 18.0005 40.0953 18.0005 39.4117V28.9454H24.083V39.4118C24.083 40.0953 24.6371 40.6494 25.3206 40.6494H35.6696C36.3531 40.6494 36.9072 40.0953 36.9071 39.4118V22.1739H39.9234C40.8215 22.1739 41.6115 21.6327 41.9359 20.7953C42.2601 19.9577 42.0408 19.0256 41.3769 18.4206ZM35.6696 19.6986C34.9862 19.6986 34.432 20.2527 34.432 20.9363V38.1742H26.5583V27.7078C26.5583 27.0243 26.0042 26.4702 25.3207 26.4702H16.7629C16.0795 26.4702 15.5253 27.0242 15.5253 27.7078V38.1742H7.65108V20.9363C7.65108 20.2528 7.097 19.6986 6.41347 19.6986H2.97913L21.0419 3.23998L27.193 8.84492C27.5553 9.17502 28.0783 9.26009 28.5266 9.06225C28.9748 8.86416 29.2641 8.42014 29.2641 7.9301V5.67739H35.3467V15.7278C35.3467 16.0761 35.4933 16.4081 35.7507 16.6426L39.1045 19.6986H35.6696Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,4 @@
<svg width="44" height="41" viewBox="0 0 44 41" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M43.2927 19.4471L38.6024 16.1405C37.7526 15.5414 36.578 16.1514 36.578 17.1901V19.2125H14.0578C13.3485 19.2125 12.7734 19.7875 12.7734 20.4968C12.7734 21.2062 13.3485 21.7811 14.0578 21.7811H36.5778V23.8034C36.5778 24.8489 37.7586 25.4475 38.6021 24.853L43.2924 21.5464C44.0087 21.0418 44.0231 19.9632 43.2927 19.4471Z" fill="#2F2F2F"/>
<path d="M36.8549 28.7433C36.2411 28.3883 35.4554 28.5979 35.1002 29.2119C32.0834 34.4273 26.4442 37.9285 20 37.9285C10.3883 37.9285 2.56855 30.1088 2.56855 20.4971C2.56855 10.8854 10.3883 3.06562 20 3.06562C26.4485 3.06562 32.0851 6.57011 35.1001 11.782C35.4552 12.3961 36.2411 12.6056 36.8548 12.2507C37.4688 11.8956 37.6785 11.1099 37.3235 10.4959C33.8538 4.49787 27.3737 0.49707 20 0.49707C8.94595 0.49707 0 9.44208 0 20.4971C0 31.5511 8.94501 40.4971 20 40.4971C27.3769 40.4971 33.8554 36.4934 37.3236 30.4981C37.6786 29.8841 37.4689 29.0985 36.8549 28.7433Z" fill="#2F2F2F"/>
</svg>

After

Width:  |  Height:  |  Size: 1 KiB

View file

@ -0,0 +1,4 @@
<svg width="44" height="41" viewBox="0 0 40 41" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 0.496826C8.94609 0.496826 0 9.4419 0 20.4968C0 31.5507 8.94508 40.4968 20 40.4968C31.0539 40.4968 40 31.5517 40 20.4968C40 9.44292 31.0549 0.496826 20 0.496826ZM20 37.8302C10.4424 37.8302 2.66664 30.0545 2.66664 20.4968C2.66664 10.9392 10.4424 3.16347 20 3.16347C29.5576 3.16347 37.3334 10.9392 37.3334 20.4968C37.3334 30.0544 29.5576 37.8302 20 37.8302Z" fill="#5F5F5F"/>
<path d="M29.0113 19.1634H21.3333V11.4855C21.3333 10.7491 20.7364 10.1521 20 10.1521C19.2636 10.1521 18.6666 10.7491 18.6666 11.4855V19.1634H10.9886C10.2523 19.1634 9.65527 19.7604 9.65527 20.4968C9.65527 21.2332 10.2522 21.8301 10.9886 21.8301H18.6666V29.5081C18.6666 30.2444 19.2636 30.8415 20 30.8415C20.7364 30.8415 21.3333 30.2445 21.3333 29.5081V21.8301H29.0113C29.7476 21.8301 30.3446 21.2332 30.3446 20.4968C30.3446 19.7604 29.7476 19.1634 29.0113 19.1634Z" fill="#5F5F5F"/>
</svg>

After

Width:  |  Height:  |  Size: 972 B

View file

@ -0,0 +1,4 @@
<svg width="44" height="42" viewBox="0 0 44 42" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M42.0593 3.70897C41.2101 3.52677 40.3748 4.06771 40.193 4.91649L39.0508 10.2469C35.414 4.04269 28.7388 0.149414 21.4226 0.149414C10.1556 0.149414 0.989258 9.31563 0.989258 20.5828C0.989258 21.4508 1.69292 22.1546 2.56105 22.1546C3.42906 22.1546 4.13285 21.4508 4.13285 20.5828C4.13285 11.0491 11.889 3.29301 21.4226 3.29301C27.638 3.29301 33.3073 6.61302 36.3767 11.8993L31.1364 10.7763C30.2874 10.5943 29.452 11.1351 29.2703 11.9839C29.0885 12.8327 29.6292 13.6684 30.4779 13.8502L39.4731 15.7779C39.6259 15.8107 39.7811 15.8201 39.9341 15.8073C40.189 15.7858 40.4375 15.7022 40.6562 15.5606C41.0063 15.3341 41.252 14.9779 41.3394 14.5703L43.2672 5.57513C43.4488 4.72649 42.9081 3.89104 42.0593 3.70897Z" fill="#2F2F2F"/>
<path d="M40.4777 18.5225C39.6102 18.5512 38.93 19.2777 38.9586 20.1452C39.111 24.761 37.457 29.1597 34.3008 32.5315C31.1448 35.9029 26.8647 37.8439 22.2491 37.9963C22.0567 38.0026 21.8653 38.0057 21.6736 38.0057C15.651 38.0055 10.103 34.8776 6.96968 29.8097L12.4329 31.2747C13.2713 31.4994 14.1333 31.0021 14.3581 30.1635C14.583 29.325 14.0855 28.4632 13.2471 28.2381L4.3615 25.8557C3.95887 25.748 3.52971 25.8043 3.16882 26.0125C2.80769 26.2208 2.54425 26.5642 2.43624 26.9668L0.054023 35.8526C-0.170807 36.6911 0.326635 37.5529 1.16509 37.7779C1.30153 37.8145 1.43834 37.8321 1.57313 37.8321C2.26699 37.8321 2.90212 37.3688 3.09036 36.6668L4.4294 31.6726C8.15444 37.5382 14.6384 41.1496 21.6729 41.1493C21.8989 41.1493 22.1261 41.1457 22.3529 41.1381C27.8078 40.9578 32.8661 38.6642 36.596 34.6797C40.326 30.6951 42.2808 25.4965 42.1006 20.0415C42.072 19.1741 41.3451 18.4917 40.4777 18.5225Z" fill="#2F2F2F"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,3 @@
<svg width="44" height="41" viewBox="0 0 40 41" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M39.6569 0.99271C39.3254 0.661147 38.8281 0.559194 38.3931 0.733256L0.736682 15.7956C0.305822 15.968 0.0173061 16.3783 0.000743623 16.8421C-0.0157408 17.3059 0.24301 17.7356 0.66051 17.9381L15.5096 25.1398L22.7113 39.9889C22.9077 40.3939 23.3179 40.6494 23.7655 40.6494C23.7794 40.6494 23.7934 40.6492 23.8073 40.6486C24.271 40.6321 24.6815 40.3436 24.8538 39.9128L39.9163 2.25662C40.0903 1.8213 39.9884 1.32419 39.6569 0.99271ZM4.06981 16.9867L33.9625 5.02975L16.1477 22.8444L4.06981 16.9867ZM23.6627 36.5796L17.805 24.5016L35.6199 6.68694L23.6627 36.5796Z" fill="#2F2F2F"/>
</svg>

After

Width:  |  Height:  |  Size: 688 B

32
ios/.gitignore vendored Normal file
View file

@ -0,0 +1,32 @@
*.mode1v3
*.mode2v3
*.moved-aside
*.pbxuser
*.perspectivev3
**/*sync/
.sconsign.dblite
.tags*
**/.vagrant/
**/DerivedData/
Icon?
**/Pods/
**/.symlinks/
profile
xcuserdata
**/.generated/
Flutter/App.framework
Flutter/Flutter.framework
Flutter/Flutter.podspec
Flutter/Generated.xcconfig
Flutter/app.flx
Flutter/app.zip
Flutter/flutter_assets/
Flutter/flutter_export_environment.sh
ServiceDefinitions.json
Runner/GeneratedPluginRegistrant.*
# Exceptions to above rules.
!default.mode1v3
!default.mode2v3
!default.pbxuser
!default.perspectivev3

View file

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleExecutable</key>
<string>App</string>
<key>CFBundleIdentifier</key>
<string>io.flutter.flutter.app</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>App</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>MinimumOSVersion</key>
<string>9.0</string>
</dict>
</plist>

View file

@ -0,0 +1,2 @@
#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
#include "Generated.xcconfig"

View file

@ -0,0 +1,2 @@
#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
#include "Generated.xcconfig"

41
ios/Podfile Normal file
View file

@ -0,0 +1,41 @@
# Uncomment this line to define a global platform for your project
# platform :ios, '9.0'
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
project 'Runner', {
'Debug' => :debug,
'Profile' => :release,
'Release' => :release,
}
def flutter_root
generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__)
unless File.exist?(generated_xcode_build_settings_path)
raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first"
end
File.foreach(generated_xcode_build_settings_path) do |line|
matches = line.match(/FLUTTER_ROOT\=(.*)/)
return matches[1].strip if matches
end
raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get"
end
require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)
flutter_ios_podfile_setup
target 'Runner' do
use_frameworks!
use_modular_headers!
flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
end
post_install do |installer|
installer.pods_project.targets.each do |target|
flutter_additional_ios_build_settings(target)
end
end

28
ios/Podfile.lock Normal file
View file

@ -0,0 +1,28 @@
PODS:
- Flutter (1.0.0)
- path_provider (0.0.1):
- Flutter
- shared_preferences (0.0.1):
- Flutter
DEPENDENCIES:
- Flutter (from `Flutter`)
- path_provider (from `.symlinks/plugins/path_provider/ios`)
- shared_preferences (from `.symlinks/plugins/shared_preferences/ios`)
EXTERNAL SOURCES:
Flutter:
:path: Flutter
path_provider:
:path: ".symlinks/plugins/path_provider/ios"
shared_preferences:
:path: ".symlinks/plugins/shared_preferences/ios"
SPEC CHECKSUMS:
Flutter: 0e3d915762c693b495b44d77113d4970485de6ec
path_provider: abfe2b5c733d04e238b0d8691db0cfd63a27a93c
shared_preferences: af6bfa751691cdc24be3045c43ec037377ada40d
PODFILE CHECKSUM: aafe91acc616949ddb318b77800a7f51bffa2a4c
COCOAPODS: 1.10.0

View file

@ -0,0 +1,563 @@
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
F87ADA014EB67BEF3AD7799E /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6E16B760F1C0842088C54BF1 /* Pods_Runner.framework */; };
/* End PBXBuildFile section */
/* Begin PBXCopyFilesBuildPhase section */
9705A1C41CF9048500538489 /* Embed Frameworks */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 10;
files = (
);
name = "Embed Frameworks";
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; };
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; };
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; };
6E16B760F1C0842088C54BF1 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = "<group>"; };
74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; };
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = "<group>"; };
9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = "<group>"; };
97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
A3A8079BBFA05F5901058C96 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = "<group>"; };
F59C4DBFA482833E1775B849 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = "<group>"; };
FBC037BB1DAB59467C2B688B /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
97C146EB1CF9000F007C117D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
F87ADA014EB67BEF3AD7799E /* Pods_Runner.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
9740EEB11CF90186004384FC /* Flutter */ = {
isa = PBXGroup;
children = (
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,
9740EEB21CF90195004384FC /* Debug.xcconfig */,
7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
9740EEB31CF90195004384FC /* Generated.xcconfig */,
);
name = Flutter;
sourceTree = "<group>";
};
97C146E51CF9000F007C117D = {
isa = PBXGroup;
children = (
9740EEB11CF90186004384FC /* Flutter */,
97C146F01CF9000F007C117D /* Runner */,
97C146EF1CF9000F007C117D /* Products */,
B8822B84D13D77CE4D92D054 /* Pods */,
DAF423B17F721CFDF2994998 /* Frameworks */,
);
sourceTree = "<group>";
};
97C146EF1CF9000F007C117D /* Products */ = {
isa = PBXGroup;
children = (
97C146EE1CF9000F007C117D /* Runner.app */,
);
name = Products;
sourceTree = "<group>";
};
97C146F01CF9000F007C117D /* Runner */ = {
isa = PBXGroup;
children = (
97C146FA1CF9000F007C117D /* Main.storyboard */,
97C146FD1CF9000F007C117D /* Assets.xcassets */,
97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */,
97C147021CF9000F007C117D /* Info.plist */,
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */,
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,
74858FAE1ED2DC5600515810 /* AppDelegate.swift */,
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */,
);
path = Runner;
sourceTree = "<group>";
};
B8822B84D13D77CE4D92D054 /* Pods */ = {
isa = PBXGroup;
children = (
FBC037BB1DAB59467C2B688B /* Pods-Runner.debug.xcconfig */,
F59C4DBFA482833E1775B849 /* Pods-Runner.release.xcconfig */,
A3A8079BBFA05F5901058C96 /* Pods-Runner.profile.xcconfig */,
);
name = Pods;
path = Pods;
sourceTree = "<group>";
};
DAF423B17F721CFDF2994998 /* Frameworks */ = {
isa = PBXGroup;
children = (
6E16B760F1C0842088C54BF1 /* Pods_Runner.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
97C146ED1CF9000F007C117D /* Runner */ = {
isa = PBXNativeTarget;
buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
buildPhases = (
32747C3D938C26CED403FB48 /* [CP] Check Pods Manifest.lock */,
9740EEB61CF901F6004384FC /* Run Script */,
97C146EA1CF9000F007C117D /* Sources */,
97C146EB1CF9000F007C117D /* Frameworks */,
97C146EC1CF9000F007C117D /* Resources */,
9705A1C41CF9048500538489 /* Embed Frameworks */,
3B06AD1E1E4923F5004D2608 /* Thin Binary */,
8AB297F4C2E3C2167EC85F57 /* [CP] Embed Pods Frameworks */,
);
buildRules = (
);
dependencies = (
);
name = Runner;
productName = Runner;
productReference = 97C146EE1CF9000F007C117D /* Runner.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
97C146E61CF9000F007C117D /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 1020;
ORGANIZATIONNAME = "";
TargetAttributes = {
97C146ED1CF9000F007C117D = {
CreatedOnToolsVersion = 7.3.1;
LastSwiftMigration = 1100;
};
};
};
buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */;
compatibilityVersion = "Xcode 9.3";
developmentRegion = en;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
mainGroup = 97C146E51CF9000F007C117D;
productRefGroup = 97C146EF1CF9000F007C117D /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
97C146ED1CF9000F007C117D /* Runner */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
97C146EC1CF9000F007C117D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */,
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
32747C3D938C26CED403FB48 /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
);
inputPaths = (
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
"${PODS_ROOT}/Manifest.lock",
);
name = "[CP] Check Pods Manifest.lock";
outputFileListPaths = (
);
outputPaths = (
"$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Thin Binary";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
};
8AB297F4C2E3C2167EC85F57 /* [CP] Embed Pods Frameworks */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
);
name = "[CP] Embed Pods Frameworks";
outputFileListPaths = (
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
9740EEB61CF901F6004384FC /* Run Script */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Run Script";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
};
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
97C146EA1CF9000F007C117D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */,
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXVariantGroup section */
97C146FA1CF9000F007C117D /* Main.storyboard */ = {
isa = PBXVariantGroup;
children = (
97C146FB1CF9000F007C117D /* Base */,
);
name = Main.storyboard;
sourceTree = "<group>";
};
97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = {
isa = PBXVariantGroup;
children = (
97C147001CF9000F007C117D /* Base */,
);
name = LaunchScreen.storyboard;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
249021D3217E4FDB00AE95B9 /* Profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SUPPORTED_PLATFORMS = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
};
name = Profile;
};
249021D4217E4FDB00AE95B9 /* Profile */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
PRODUCT_BUNDLE_IDENTIFIER = com.example.roboAdvisory;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_VERSION = 5.0;
VERSIONING_SYSTEM = "apple-generic";
};
name = Profile;
};
97C147031CF9000F007C117D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
97C147041CF9000F007C117D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SUPPORTED_PLATFORMS = iphoneos;
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
};
name = Release;
};
97C147061CF9000F007C117D /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
PRODUCT_BUNDLE_IDENTIFIER = com.example.roboAdvisory;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 5.0;
VERSIONING_SYSTEM = "apple-generic";
};
name = Debug;
};
97C147071CF9000F007C117D /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
PRODUCT_BUNDLE_IDENTIFIER = com.example.roboAdvisory;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_VERSION = 5.0;
VERSIONING_SYSTEM = "apple-generic";
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = {
isa = XCConfigurationList;
buildConfigurations = (
97C147031CF9000F007C117D /* Debug */,
97C147041CF9000F007C117D /* Release */,
249021D3217E4FDB00AE95B9 /* Profile */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = {
isa = XCConfigurationList;
buildConfigurations = (
97C147061CF9000F007C117D /* Debug */,
97C147071CF9000F007C117D /* Release */,
249021D4217E4FDB00AE95B9 /* Profile */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 97C146E61CF9000F007C117D /* Project object */;
}

View file

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<Workspace
version = "1.0">
<FileRef
location = "group:Runner.xcodeproj">
</FileRef>
</Workspace>

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>PreviewsEnabled</key>
<false/>
</dict>
</plist>

View file

@ -0,0 +1,91 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1020"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES">
<Testables>
</Testables>
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</MacroExpansion>
<AdditionalOptions>
</AdditionalOptions>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
allowLocationSimulation = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
<AdditionalOptions>
</AdditionalOptions>
</LaunchAction>
<ProfileAction
buildConfiguration = "Profile"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<Workspace
version = "1.0">
<FileRef
location = "group:Runner.xcodeproj">
</FileRef>
<FileRef
location = "group:Pods/Pods.xcodeproj">
</FileRef>
</Workspace>

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>PreviewsEnabled</key>
<false/>
</dict>
</plist>

View file

@ -0,0 +1,13 @@
import UIKit
import Flutter
@UIApplicationMain
@objc class AppDelegate: FlutterAppDelegate {
override func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
GeneratedPluginRegistrant.register(with: self)
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
}

View file

@ -0,0 +1,122 @@
{
"images" : [
{
"size" : "20x20",
"idiom" : "iphone",
"filename" : "Icon-App-20x20@2x.png",
"scale" : "2x"
},
{
"size" : "20x20",
"idiom" : "iphone",
"filename" : "Icon-App-20x20@3x.png",
"scale" : "3x"
},
{
"size" : "29x29",
"idiom" : "iphone",
"filename" : "Icon-App-29x29@1x.png",
"scale" : "1x"
},
{
"size" : "29x29",
"idiom" : "iphone",
"filename" : "Icon-App-29x29@2x.png",
"scale" : "2x"
},
{
"size" : "29x29",
"idiom" : "iphone",
"filename" : "Icon-App-29x29@3x.png",
"scale" : "3x"
},
{
"size" : "40x40",
"idiom" : "iphone",
"filename" : "Icon-App-40x40@2x.png",
"scale" : "2x"
},
{
"size" : "40x40",
"idiom" : "iphone",
"filename" : "Icon-App-40x40@3x.png",
"scale" : "3x"
},
{
"size" : "60x60",
"idiom" : "iphone",
"filename" : "Icon-App-60x60@2x.png",
"scale" : "2x"
},
{
"size" : "60x60",
"idiom" : "iphone",
"filename" : "Icon-App-60x60@3x.png",
"scale" : "3x"
},
{
"size" : "20x20",
"idiom" : "ipad",
"filename" : "Icon-App-20x20@1x.png",
"scale" : "1x"
},
{
"size" : "20x20",
"idiom" : "ipad",
"filename" : "Icon-App-20x20@2x.png",
"scale" : "2x"
},
{
"size" : "29x29",
"idiom" : "ipad",
"filename" : "Icon-App-29x29@1x.png",
"scale" : "1x"
},
{
"size" : "29x29",
"idiom" : "ipad",
"filename" : "Icon-App-29x29@2x.png",
"scale" : "2x"
},
{
"size" : "40x40",
"idiom" : "ipad",
"filename" : "Icon-App-40x40@1x.png",
"scale" : "1x"
},
{
"size" : "40x40",
"idiom" : "ipad",
"filename" : "Icon-App-40x40@2x.png",
"scale" : "2x"
},
{
"size" : "76x76",
"idiom" : "ipad",
"filename" : "Icon-App-76x76@1x.png",
"scale" : "1x"
},
{
"size" : "76x76",
"idiom" : "ipad",
"filename" : "Icon-App-76x76@2x.png",
"scale" : "2x"
},
{
"size" : "83.5x83.5",
"idiom" : "ipad",
"filename" : "Icon-App-83.5x83.5@2x.png",
"scale" : "2x"
},
{
"size" : "1024x1024",
"idiom" : "ios-marketing",
"filename" : "Icon-App-1024x1024@1x.png",
"scale" : "1x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 564 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

View file

@ -0,0 +1,23 @@
{
"images" : [
{
"idiom" : "universal",
"filename" : "LaunchImage.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "LaunchImage@2x.png",
"scale" : "2x"
},
{
"idiom" : "universal",
"filename" : "LaunchImage@3x.png",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 B

View file

@ -0,0 +1,5 @@
# Launch Screen Assets
You can customize the launch screen with your own desired assets by replacing the image files in this directory.
You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images.

View file

@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="12121" systemVersion="16G29" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="12089"/>
</dependencies>
<scenes>
<!--View Controller-->
<scene sceneID="EHf-IW-A2E">
<objects>
<viewController id="01J-lp-oVM" sceneMemberID="viewController">
<layoutGuides>
<viewControllerLayoutGuide type="top" id="Ydg-fD-yQy"/>
<viewControllerLayoutGuide type="bottom" id="xbc-2k-c8Z"/>
</layoutGuides>
<view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" image="LaunchImage" translatesAutoresizingMaskIntoConstraints="NO" id="YRO-k0-Ey4">
</imageView>
</subviews>
<color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<constraints>
<constraint firstItem="YRO-k0-Ey4" firstAttribute="centerX" secondItem="Ze5-6b-2t3" secondAttribute="centerX" id="1a2-6s-vTC"/>
<constraint firstItem="YRO-k0-Ey4" firstAttribute="centerY" secondItem="Ze5-6b-2t3" secondAttribute="centerY" id="4X2-HB-R7a"/>
</constraints>
</view>
</viewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
</objects>
<point key="canvasLocation" x="53" y="375"/>
</scene>
</scenes>
<resources>
<image name="LaunchImage" width="168" height="185"/>
</resources>
</document>

View file

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="10117" systemVersion="15F34" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" initialViewController="BYZ-38-t0r">
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="10085"/>
</dependencies>
<scenes>
<!--Flutter View Controller-->
<scene sceneID="tne-QT-ifu">
<objects>
<viewController id="BYZ-38-t0r" customClass="FlutterViewController" sceneMemberID="viewController">
<layoutGuides>
<viewControllerLayoutGuide type="top" id="y3c-jy-aDJ"/>
<viewControllerLayoutGuide type="bottom" id="wfy-db-euE"/>
</layoutGuides>
<view key="view" contentMode="scaleToFill" id="8bC-Xf-vdC">
<rect key="frame" x="0.0" y="0.0" width="600" height="600"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
</view>
</viewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="dkx-z0-nzr" sceneMemberID="firstResponder"/>
</objects>
</scene>
</scenes>
</document>

45
ios/Runner/Info.plist Normal file
View file

@ -0,0 +1,45 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>robo_advisory</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>$(FLUTTER_BUILD_NAME)</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>$(FLUTTER_BUILD_NUMBER)</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIMainStoryboardFile</key>
<string>Main</string>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
</dict>
</plist>

View file

@ -0,0 +1 @@
#import "GeneratedPluginRegistrant.h"

21
lib/config/Routes.dart Normal file
View file

@ -0,0 +1,21 @@
import 'package:flutter/material.dart';
import 'package:robo_advisory/screens/login.dart';
import 'package:robo_advisory/screens/register/register_step_1.dart';
import 'package:robo_advisory/screens/dashboard/dashboard.dart';
import 'package:robo_advisory/screens/welcome.dart';
class Routes {
static const String splashScreen = '/welcome';
static const String login = '/';
static const String register = '/register';
static const String dashboard = '/dashboard';
static Map<String, WidgetBuilder> getRoute() {
return <String, WidgetBuilder>{
splashScreen: (_) => WelcomeScreen(),
login: (_) => LoginScreen(),
register: (_) => RegisterFirstScreen(),
dashboard: (_) => DashboardScreen(),
};
}
}

View file

@ -0,0 +1,13 @@
enum Flavor { MOCK, PRO }
class Injector {
static Flavor _flavor;
static void configure(Flavor flavor) {
_flavor = flavor;
}
static Flavor checkInjector() {
return _flavor;
}
}

32
lib/main.dart Normal file
View file

@ -0,0 +1,32 @@
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import 'providers/auth_provider.dart';
import 'providers/user_provider.dart';
import 'providers/wallet_provider.dart';
import 'package:robo_advisory/config/Routes.dart';
import 'package:robo_advisory/injection/dependency_injection.dart';
void main() {
Injector.configure(Flavor.MOCK);
runApp(MyApp());
}
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MultiProvider(
providers: [
ChangeNotifierProvider(create: (_) => AuthProvider()),
ChangeNotifierProvider(create: (_) => UserProvider()),
ChangeNotifierProvider(create: (_) => WalletProvider()),
],
child: MaterialApp(
initialRoute: Routes.login,
routes: Routes.getRoute(),
title: 'Robo Advisory',
// theme: ThemeData.dark(),
),
);
}
}

10
lib/models/expenses.dart Normal file
View file

@ -0,0 +1,10 @@
class Expenses {
String type;
String amount;
String percentage;
Expenses({
this.type,
this.amount,
this.percentage,
});
}

View file

@ -0,0 +1,15 @@
class HealthSteam {
String type;
String valueInPercentage;
String goldInGram;
String goldPriceInTurkishLira;
String oneGramGoldPriceInLira;
HealthSteam({
this.type,
this.valueInPercentage,
this.goldInGram,
this.goldPriceInTurkishLira,
this.oneGramGoldPriceInLira,
});
}

8
lib/models/user.dart Normal file
View file

@ -0,0 +1,8 @@
class User {
int userId;
String name;
String email;
String token;
User({this.userId, this.name, this.email, this.token});
}

29
lib/models/wallet.dart Normal file
View file

@ -0,0 +1,29 @@
import 'package:robo_advisory/models/healthSteam.dart';
import 'package:robo_advisory/models/expenses.dart';
class Wallet {
String totalAssets;
String totalTurkishLiraPool;
String totalGoldInGram;
String totalGoldInTurkishLira;
String healthSteamDay;
List<HealthSteam> healthStream;
List<Expenses> expensesChart;
Wallet({
this.totalAssets,
this.totalTurkishLiraPool,
this.totalGoldInGram,
this.totalGoldInTurkishLira,
this.healthSteamDay,
this.healthStream,
this.expensesChart,
});
Wallet.fromMap(Map<String, dynamic> map)
: totalAssets = map["total_assets"],
totalTurkishLiraPool = map["total_turkish_lira"],
totalGoldInGram = map["total_gold_in_gram"],
totalGoldInTurkishLira = map["total_gold_in_turkish_lira"],
healthSteamDay = map["health_stream_day"];
}

View file

@ -0,0 +1,49 @@
import 'dart:async';
import 'package:flutter/material.dart';
enum Status {
NotLoggedIn,
NotRegistered,
LoggedIn,
Registered,
Authenticating,
Registering,
LoggedOut
}
class AuthProvider with ChangeNotifier {
Status _loggedInStatus = Status.NotLoggedIn;
Status _registeredInStatus = Status.NotRegistered;
Status get loggedInStatus => _loggedInStatus;
Status get registeredInStatus => _registeredInStatus;
Future<Map<String, dynamic>> login(String email, int pinCode) async {
var result;
final Map<String, dynamic> loginData = {
'user': {'email': email, 'pinCode': pinCode}
};
_loggedInStatus = Status.Authenticating;
notifyListeners();
Timer(Duration(seconds: 30), () {
_loggedInStatus = Status.LoggedIn;
notifyListeners();
result = {'status': true, 'message': 'Successful'};
return result;
});
}
Future<Map<String, dynamic>> register(
String email, String password, String passwordConfirmation) async {
final Map<String, dynamic> registrationData = {
'user': {
'email': email,
'password': password,
'password_confirmation': passwordConfirmation
}
};
return {'status': true, 'message': 'Successfully registered'};
}
}

View file

@ -0,0 +1,13 @@
import 'package:flutter/foundation.dart';
import 'package:robo_advisory/models/user.dart';
class UserProvider with ChangeNotifier {
User _user = new User();
User get user => _user;
void setUser(User user) {
_user = user;
notifyListeners();
}
}

View file

@ -0,0 +1,18 @@
import 'package:flutter/foundation.dart';
import 'package:robo_advisory/models/wallet.dart';
import 'package:robo_advisory/repository/wallet.repository.dart';
class WalletProvider with ChangeNotifier {
Wallet _wallet = new Wallet();
Wallet get wallet => _wallet;
void setWallet(Wallet wallet) {
_wallet = wallet;
notifyListeners();
}
Future<Wallet> loadWallet() async {
return await WalletRepository.loadWallet();
}
}

View file

@ -0,0 +1,22 @@
import 'package:robo_advisory/injection/dependency_injection.dart';
import 'package:robo_advisory/models/wallet.dart';
class WalletRepository {
static loadWallet() async {
switch (Injector.checkInjector()) {
case Flavor.MOCK:
return Wallet.fromMap(wallerJSON);
default:
// TODO: check how it will work with the API
return Wallet.fromMap(wallerJSON);
}
}
}
final wallerJSON = {
'total_assets': '50,000.00 TL',
'total_turkish_lira': '5000.00 TL',
'total_gold_in_gram': '90.00g XAU',
'total_gold_in_turkish_lira': '45,000.00 TL',
'health_stream_day': 'Day 01'
};

View file

@ -0,0 +1,85 @@
import 'package:flutter/material.dart';
import 'package:robo_advisory/models/wallet.dart';
import 'package:robo_advisory/screens/dashboard/local_widgets/bottom_navigation.dart';
import 'package:robo_advisory/screens/home/home.dart';
import 'package:robo_advisory/screens/fund_transfer/fund_transfer.dart';
import 'package:robo_advisory/screens/settlement/settlement.dart';
import 'package:robo_advisory/screens/history/history.dart';
import 'package:robo_advisory/widgets/drawer.dart';
import 'package:provider/provider.dart';
import 'package:robo_advisory/providers/wallet_provider.dart';
import 'package:flutter_spinkit/flutter_spinkit.dart';
// TODO: temp
import 'dart:async';
class DashboardScreen extends StatefulWidget {
@override
_DashboardScreenState createState() => _DashboardScreenState();
}
class _DashboardScreenState extends State<DashboardScreen> {
final GlobalKey<ScaffoldState> _scaffoldKey = GlobalKey<ScaffoldState>();
void _openEndDrawer() {
_scaffoldKey.currentState.openEndDrawer();
}
int _selectedIndex = 0;
bool loadingData = true;
Wallet walletData;
void _onItemTapped(int index) {
setState(() {
_selectedIndex = index;
});
}
void initState() {
WalletProvider walletProvider =
Provider.of<WalletProvider>(context, listen: false);
walletProvider.loadWallet().then((value) {
if (value.totalAssets != null) {
Timer(Duration(seconds: 3), () {
setState(() {
loadingData = false;
walletData = value;
});
print(value.totalAssets);
});
}
});
super.initState();
}
@override
Widget build(BuildContext context) {
var currentTab = [
HomeScreen(
toggleDrawer: _openEndDrawer,
wallet: walletData,
),
FundTransferScreen(),
SettlementScreen(),
HistoryScreen(),
];
return Scaffold(
key: _scaffoldKey,
backgroundColor: Colors.white,
body: loadingData
? Container(
child: Center(
child: SpinKitFadingFour(
color: Colors.black,
size: 100.0,
),
),
)
: currentTab[_selectedIndex],
endDrawer: AppDrawer(),
bottomNavigationBar: BottomNavigation(
selectedIndex: _selectedIndex,
onItemTapped: _onItemTapped,
));
}
}

View file

@ -0,0 +1,54 @@
import 'package:flutter/material.dart';
import 'package:robo_advisory/theme/icons.dart';
import 'package:flutter_svg/flutter_svg.dart';
class BottomNavigation extends StatelessWidget {
BottomNavigation({@required this.selectedIndex, @required this.onItemTapped});
final int selectedIndex;
final Function onItemTapped;
@override
Widget build(BuildContext context) {
return BottomNavigationBar(
type: BottomNavigationBarType.fixed,
backgroundColor: Color(0xFFC4C4C4),
items: <BottomNavigationBarItem>[
BottomNavigationBarItem(
icon: SvgPicture.asset(
homeIcon,
color: selectedIndex == 0 ? Color(0xFF896126) : Colors.black,
height: 30.0,
),
label: '',
),
BottomNavigationBarItem(
icon: SvgPicture.asset(
shareIcon,
color: selectedIndex == 1 ? Color(0xFF896126) : Colors.black,
height: 30.0,
),
label: '',
),
BottomNavigationBarItem(
icon: SvgPicture.asset(
reloadIcon,
color: selectedIndex == 2 ? Color(0xFF896126) : Colors.black,
height: 30.0,
),
label: '',
),
BottomNavigationBarItem(
icon: SvgPicture.asset(
currencyIcon,
color: selectedIndex == 3 ? Color(0xFF896126) : Colors.black,
height: 30.0,
),
label: '',
),
],
showSelectedLabels: false,
showUnselectedLabels: false,
currentIndex: selectedIndex,
onTap: onItemTapped,
);
}
}

View file

@ -0,0 +1,12 @@
import 'package:flutter/material.dart';
class FundTransferScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return SafeArea(
child: Center(
child: Text('Fund Transfer Screen'),
),
);
}
}

View file

@ -0,0 +1,12 @@
import 'package:flutter/material.dart';
class HistoryScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return SafeArea(
child: Center(
child: Text('History Screen'),
),
);
}
}

276
lib/screens/home/home.dart Normal file
View file

@ -0,0 +1,276 @@
import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:robo_advisory/models/wallet.dart';
import 'package:robo_advisory/theme/theme.dart';
class HomeScreen extends StatelessWidget {
HomeScreen({@required this.toggleDrawer, @required this.wallet});
final Function toggleDrawer;
final Wallet wallet;
double calculatePercentage(double fullWidth, int percentValue) {
return (percentValue / 100) * fullWidth;
}
@override
Widget build(BuildContext context) {
return SingleChildScrollView(
child: Center(
child: SafeArea(
child: Padding(
padding: AppTheme.padding,
child: Column(
children: [
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
'Hi Johne',
style: GoogleFonts.inter(
textStyle: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 36.0,
color: Colors.black,
),
),
),
GestureDetector(
onTap: toggleDrawer,
child: Icon(Icons.more_vert),
),
],
),
SizedBox(
height: 30.0,
),
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Container(
alignment: Alignment.centerLeft,
width: double.infinity,
padding: EdgeInsets.all(20.0),
color: Color(0xFFC4C4C4),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
'Total Assets',
style: GoogleFonts.inter(
textStyle: TextStyle(
fontWeight: FontWeight.normal,
fontSize: 16,
color: Colors.black,
),
),
),
Text(
wallet.totalAssets,
style: GoogleFonts.inter(
textStyle: TextStyle(
fontWeight: FontWeight.w600,
fontSize: 45,
color: Colors.black,
),
),
),
],
),
),
Container(
padding: EdgeInsets.only(
left: 20.0, right: 20.0, top: 7.0, bottom: 7.0),
color: Color(0xFFE5E5E5),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
'TRY pool',
style: GoogleFonts.inter(
textStyle: TextStyle(
fontWeight: FontWeight.normal,
fontSize: 16,
color: Colors.black,
),
),
),
Text(
wallet.totalTurkishLiraPool,
style: GoogleFonts.inter(
textStyle: TextStyle(
fontWeight: FontWeight.normal,
fontSize: 16,
color: Colors.black,
),
),
),
],
),
),
Container(
padding: EdgeInsets.only(
left: 20.0, right: 20.0, top: 7.0, bottom: 7.0),
color: Color(0xFFC4C4C4),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
'Total XAU grams',
style: GoogleFonts.inter(
textStyle: TextStyle(
fontWeight: FontWeight.normal,
fontSize: 16,
color: Colors.black,
),
),
),
Text(
wallet.totalGoldInGram,
style: GoogleFonts.inter(
textStyle: TextStyle(
fontWeight: FontWeight.normal,
fontSize: 16,
color: Colors.black,
),
),
),
],
),
),
],
),
SizedBox(
height: 30.0,
),
Container(
width: double.infinity,
padding: EdgeInsets.only(
left: 20.0, right: 20.0, top: 7.0, bottom: 20.0),
color: Color(0xFFE5E5E5),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
'Financial Health Stream',
style: GoogleFonts.inter(
textStyle: TextStyle(
fontWeight: FontWeight.normal,
fontSize: 16,
color: Colors.black,
),
),
),
SizedBox(
height: 10.0,
),
Row(
children: [
SizedBox(
width: calculatePercentage(
MediaQuery.of(context).size.width - 100, 30),
height: 5.0,
child: const DecoratedBox(
decoration: const BoxDecoration(
color: Color(0xFF892626),
),
),
),
SizedBox(
width: calculatePercentage(
MediaQuery.of(context).size.width - 100, 50),
height: 5.0,
child: const DecoratedBox(
decoration: const BoxDecoration(
color: Color(0xFF896126),
),
),
),
SizedBox(
width: calculatePercentage(
MediaQuery.of(context).size.width - 100, 20),
height: 5.0,
child: const DecoratedBox(
decoration: const BoxDecoration(
color: Color(0xFF348926),
),
),
)
],
)
],
),
),
SizedBox(
height: 30.0,
),
Column(
children: [
Container(
padding: EdgeInsets.only(
left: 20.0, right: 20.0, top: 7.0, bottom: 7.0),
color: Color(0xFFE5E5E5),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
'TRY pool',
style: GoogleFonts.inter(
textStyle: TextStyle(
fontWeight: FontWeight.normal,
fontSize: 16,
color: Colors.black,
),
),
),
Text(
wallet.totalGoldInTurkishLira,
style: GoogleFonts.inter(
textStyle: TextStyle(
fontWeight: FontWeight.normal,
fontSize: 16,
color: Color(0xFF896126),
),
),
),
],
),
),
Container(
padding: EdgeInsets.only(
left: 20.0, right: 20.0, top: 7.0, bottom: 7.0),
color: Color(0xFFC4C4C4),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
'Total XAU grams',
style: GoogleFonts.inter(
textStyle: TextStyle(
fontWeight: FontWeight.normal,
fontSize: 16,
color: Colors.black,
),
),
),
Text(
wallet.totalGoldInGram,
style: GoogleFonts.inter(
textStyle: TextStyle(
fontWeight: FontWeight.normal,
fontSize: 16,
color: Colors.black,
),
),
),
],
),
),
],
)
],
),
),
),
),
);
}
}

152
lib/screens/login.dart Normal file
View file

@ -0,0 +1,152 @@
import 'package:flutter/material.dart';
import 'package:pin_code_fields/pin_code_fields.dart';
import 'package:robo_advisory/utils/constants.dart';
import 'package:robo_advisory/config/Routes.dart';
class LoginScreen extends StatelessWidget {
bool rememberSwitch = false;
void _onSwitchChanged(bool value) {
print('testing switch');
rememberSwitch = true;
}
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.white,
body: SafeArea(
child: Column(
children: [
Expanded(
child: Container(
child: Center(
child: FlatButton(
splashColor: Colors.transparent,
highlightColor: Colors.transparent,
onPressed: () {
Navigator.pushNamed(context, Routes.register);
},
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(Icons.person_add_alt_1),
SizedBox(
height: 5.0,
),
Text('Add New Account'),
],
),
),
),
),
),
Expanded(
child: Container(
child: Padding(
padding: EdgeInsets.only(left: 20.0, right: 20.0),
child: SingleChildScrollView(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Align(
child: Text(
'Log In',
style: TextStyle(fontSize: 20.0),
),
alignment: Alignment.centerLeft,
),
SizedBox(
height: 15.0,
),
TextField(
keyboardType: TextInputType.emailAddress,
style: TextStyle(
color: Colors.black,
),
decoration: roboInputDecoration(
placeholderHint: 'User Name or Email address'),
onChanged: (value) {
print(value);
},
),
SizedBox(
height: 20.0,
),
Padding(
padding: EdgeInsets.only(left: 10.0, right: 10.0),
child: PinCodeTextField(
length: 5,
cursorColor: Colors.black,
animationType: AnimationType.fade,
backgroundColor: Colors.white,
animationDuration: Duration(milliseconds: 300),
textStyle: TextStyle(fontSize: 20, height: 1.6),
enableActiveFill: true,
keyboardType: TextInputType.number,
pinTheme: otpPinTheme,
boxShadows: [
BoxShadow(
offset: Offset(0, 1),
color: Colors.black12,
blurRadius: 10,
)
],
onCompleted: (v) {
print("Completed");
},
onChanged: (value) {
print(value);
},
),
),
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Switch(
value: rememberSwitch,
onChanged: _onSwitchChanged,
// activeTrackColor: Colors.white,
// activeColor: Colors.white,
),
FlatButton(
splashColor: Colors.transparent,
highlightColor: Colors.transparent,
onPressed: () {
Navigator.pushNamed(
context, Routes.splashScreen);
},
child: Text('Forgot Password?'),
)
],
),
SizedBox(
height: 15.0,
),
SizedBox(
width: double.infinity,
child: RaisedButton(
color: Color(0xFF495057),
textColor: Colors.white,
onPressed: () {
Navigator.pushNamed(context, Routes.dashboard);
},
child: Text('Log In'),
padding: EdgeInsets.all(18.0),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(18.0),
),
),
)
],
),
),
),
),
)
],
),
),
);
}
}

View file

@ -0,0 +1,118 @@
import 'package:flutter/material.dart';
import 'package:pin_code_fields/pin_code_fields.dart';
import 'package:robo_advisory/utils/constants.dart';
import 'package:robo_advisory/screens/register/register_step_2.dart';
class RegisterFirstScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.white,
body: SafeArea(
child: Align(
alignment: Alignment.bottomCenter,
child: Container(
margin: EdgeInsets.only(bottom: 50.0, left: 20.0, right: 20.0),
child: SingleChildScrollView(
child: Column(
children: <Widget>[
Align(
child: Text(
'Kindly Fill the Blanks',
style: TextStyle(fontSize: 20.0),
),
alignment: Alignment.centerLeft,
),
SizedBox(
height: 15.0,
),
TextField(
keyboardType: TextInputType.emailAddress,
style: TextStyle(
color: Colors.black,
),
decoration: roboInputDecoration(
placeholderHint: 'Email Address',
),
onChanged: (value) {
print(value);
},
),
SizedBox(
height: 20.0,
),
Padding(
padding: EdgeInsets.only(left: 10.0, right: 10.0),
child: PinCodeTextField(
length: 5,
cursorColor: Colors.black,
backgroundColor: Colors.white,
animationType: AnimationType.fade,
animationDuration: Duration(milliseconds: 300),
textStyle: TextStyle(fontSize: 20, height: 1.6),
enableActiveFill: true,
keyboardType: TextInputType.number,
pinTheme: otpPinTheme,
boxShadows: [
BoxShadow(
offset: Offset(0, 1),
color: Colors.black12,
blurRadius: 10,
)
],
onCompleted: (v) {
print("Completed");
},
onChanged: (value) {
print(value);
},
),
),
Align(
child: Row(
children: [
Transform.scale(
scale: 0.8,
child: Switch(
value: false,
),
),
Text('Remember me')
],
),
alignment: Alignment.centerLeft,
),
SizedBox(
height: 15.0,
),
SizedBox(
width: double.infinity,
child: RaisedButton(
color: Color(0xFF495057),
textColor: Colors.white,
onPressed: () {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) {
return RegisterSecondScreen();
},
),
);
},
child: Text('Continue'),
padding: EdgeInsets.all(18.0),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(18.0),
),
),
)
],
),
),
),
),
),
);
}
}

View file

@ -0,0 +1,81 @@
import 'package:flutter/material.dart';
import 'package:robo_advisory/utils/constants.dart';
import 'package:robo_advisory/config/Routes.dart';
class RegisterSecondScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.white,
body: SafeArea(
child: Align(
alignment: Alignment.bottomCenter,
child: Container(
margin: EdgeInsets.only(bottom: 50.0, left: 20.0, right: 20.0),
child: SingleChildScrollView(
child: Column(
children: <Widget>[
Align(
child: Text(
'One More Step',
style: TextStyle(fontSize: 20.0),
),
alignment: Alignment.centerLeft,
),
SizedBox(
height: 15.0,
),
TextField(
style: TextStyle(
color: Colors.black,
),
decoration: roboInputDecoration(
placeholderHint: 'User Name',
),
onChanged: (value) {
print(value);
},
),
SizedBox(
height: 15.0,
),
TextField(
keyboardType: TextInputType.number,
style: TextStyle(
color: Colors.black,
),
decoration: roboInputDecoration(
placeholderHint: 'Mobile Number',
),
onChanged: (value) {
print(value);
},
),
SizedBox(
height: 15.0,
),
SizedBox(
width: double.infinity,
child: RaisedButton(
color: Color(0xFF495057),
textColor: Colors.white,
onPressed: () {
Navigator.pushNamed(context, Routes.dashboard);
print('Next Step');
},
child: Text('Register'),
padding: EdgeInsets.all(18.0),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(18.0),
),
),
)
],
),
),
),
),
),
);
}
}

View file

@ -0,0 +1,12 @@
import 'package:flutter/material.dart';
class SettlementScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return SafeArea(
child: Center(
child: Text('Settlement Screen'),
),
);
}
}

18
lib/screens/welcome.dart Normal file
View file

@ -0,0 +1,18 @@
import 'package:flutter/material.dart';
import 'package:flutter_spinkit/flutter_spinkit.dart';
class WelcomeScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Container(
child: Center(
child: SpinKitFadingFour(
color: Colors.black,
size: 100.0,
),
),
),
);
}
}

7
lib/theme/icons.dart Normal file
View file

@ -0,0 +1,7 @@
const homeIcon = 'images/icons/home_icon.svg';
const shareIcon = 'images/icons/share_icon.svg';
const reloadIcon = 'images/icons/reload_icon.svg';
const currencyIcon = 'images/icons/currency_icon.svg';
const accountIcon = 'images/icons/account_icon.svg';
const logoutIcon = 'images/icons/logout_icon.svg';
const plusIcon = 'images/icons/plus_icon.svg';

7
lib/theme/theme.dart Normal file
View file

@ -0,0 +1,7 @@
import 'package:flutter/material.dart';
class AppTheme {
const AppTheme();
static EdgeInsets padding =
const EdgeInsets.symmetric(horizontal: 30, vertical: 50);
}

34
lib/utils/constants.dart Normal file
View file

@ -0,0 +1,34 @@
import 'package:flutter/material.dart';
import 'package:pin_code_fields/pin_code_fields.dart';
final otpPinTheme = PinTheme(
inactiveFillColor: Colors.white,
activeColor: Colors.white,
activeFillColor: Colors.white,
selectedFillColor: Colors.white,
selectedColor: Colors.white,
inactiveColor: Colors.grey,
shape: PinCodeFieldShape.box,
borderRadius: BorderRadius.circular(5),
fieldHeight: 60,
fieldWidth: 50,
);
InputDecoration roboInputDecoration({String placeholderHint}) {
return InputDecoration(
filled: true,
fillColor: Colors.white,
hintText: placeholderHint,
hintStyle: TextStyle(
color: Colors.grey,
),
border: OutlineInputBorder(
borderRadius: BorderRadius.all(
Radius.circular(30.0),
),
borderSide: BorderSide(
width: 1.0,
),
),
);
}

View file

@ -0,0 +1,30 @@
import 'package:flutter/material.dart';
class SizeConfig {
static MediaQueryData _mediaQueryData;
static double screenWidth;
static double screenHeight;
static double defaultSize;
static Orientation orientation;
void init(BuildContext context) {
_mediaQueryData = MediaQuery.of(context);
screenWidth = _mediaQueryData.size.width;
screenHeight = _mediaQueryData.size.height;
orientation = _mediaQueryData.orientation;
}
}
// Get the proportionate height as per screen size
double getProportionateScreenHeight(double inputHeight) {
double screenHeight = SizeConfig.screenHeight;
// 812 is the layout height that designer use
return (inputHeight / 812.0) * screenHeight;
}
// Get the proportionate height as per screen size
double getProportionateScreenWidth(double inputWidth) {
double screenWidth = SizeConfig.screenWidth;
// 375 is the layout width that designer use
return (inputWidth / 375.0) * screenWidth;
}

161
lib/widgets/drawer.dart Normal file
View file

@ -0,0 +1,161 @@
import 'package:flutter/material.dart';
import 'package:robo_advisory/theme/icons.dart';
import 'package:flutter_svg/flutter_svg.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:robo_advisory/config/Routes.dart';
class AppDrawer extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Drawer(
child: Container(
color: Color(0xFFB0B0B0),
child: ListView(
padding: EdgeInsets.zero,
children: <Widget>[
_createHeader(),
Center(
child: SvgPicture.asset(
plusIcon,
color: Color(0xFF2F2F2F),
height: 25.0,
),
),
Divider(),
SizedBox(
height: 30.0,
),
_createDrawerItem(
icon: shareIcon,
text: 'Send Money',
onTap: () => print('contact'),
),
_createDrawerItem(
icon: currencyIcon,
text: 'Pay Bills',
onTap: () => print('Events'),
),
_createDrawerItem(
icon: reloadIcon,
text: 'Convert',
onTap: () => print('Notes'),
),
SizedBox(
height: 30.0,
),
_createDrawerItem(
icon: accountIcon,
text: 'Account',
),
_createDrawerItem(
icon: logoutIcon,
text: 'Logout',
onTap: () => Navigator.pushNamed(context, Routes.login),
),
ListTile(
title: Text('0.0.1'),
onTap: () {},
),
],
),
),
);
}
Widget _createHeader() {
return DrawerHeader(
margin: EdgeInsets.zero,
padding: EdgeInsets.zero,
child: Stack(
children: <Widget>[
Positioned(
bottom: 12.0,
left: 16.0,
child: Column(
children: [
Row(
children: [
CircleAvatar(
backgroundColor: Color(0xFF5F5F5F),
),
SizedBox(
width: 20.0,
),
Text(
'Johne doe 01',
style: GoogleFonts.inter(
textStyle: TextStyle(
fontWeight: FontWeight.w600,
fontSize: 23,
color: Colors.black,
),
),
),
],
),
SizedBox(
height: 10.0,
),
Row(
children: [
CircleAvatar(
backgroundColor: Color(0xFF5F5F5F),
),
SizedBox(
width: 20.0,
),
Text(
'Johne doe 02',
style: GoogleFonts.inter(
textStyle: TextStyle(
fontWeight: FontWeight.w600,
fontSize: 23,
color: Colors.black,
),
),
),
],
),
],
),
),
],
),
);
}
Widget _createDrawerItem(
{String icon, String text, GestureTapCallback onTap}) {
return ListTile(
title: Row(
children: <Widget>[
SizedBox(
width: 30.0,
child: SvgPicture.asset(
icon,
color: Color(0xFF2F2F2F),
height: 25.0,
),
),
SizedBox(
width: 20.0,
),
Padding(
padding: EdgeInsets.only(left: 8.0),
child: Text(
text,
style: GoogleFonts.inter(
textStyle: TextStyle(
fontWeight: FontWeight.w500,
fontSize: 15,
color: Colors.black,
),
),
),
)
],
),
onTap: onTap,
);
}
}

397
pubspec.lock Normal file
View file

@ -0,0 +1,397 @@
# Generated by pub
# See https://dart.dev/tools/pub/glossary#lockfile
packages:
async:
dependency: transitive
description:
name: async
url: "https://pub.dartlang.org"
source: hosted
version: "2.5.0-nullsafety.1"
boolean_selector:
dependency: transitive
description:
name: boolean_selector
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.0-nullsafety.1"
characters:
dependency: transitive
description:
name: characters
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.0-nullsafety.3"
charcode:
dependency: transitive
description:
name: charcode
url: "https://pub.dartlang.org"
source: hosted
version: "1.2.0-nullsafety.1"
clock:
dependency: transitive
description:
name: clock
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.0-nullsafety.1"
collection:
dependency: transitive
description:
name: collection
url: "https://pub.dartlang.org"
source: hosted
version: "1.15.0-nullsafety.3"
convert:
dependency: transitive
description:
name: convert
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.1"
crypto:
dependency: transitive
description:
name: crypto
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.5"
cupertino_icons:
dependency: "direct main"
description:
name: cupertino_icons
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.0"
fake_async:
dependency: transitive
description:
name: fake_async
url: "https://pub.dartlang.org"
source: hosted
version: "1.2.0-nullsafety.1"
ffi:
dependency: transitive
description:
name: ffi
url: "https://pub.dartlang.org"
source: hosted
version: "0.1.3"
file:
dependency: transitive
description:
name: file
url: "https://pub.dartlang.org"
source: hosted
version: "5.2.1"
flutter:
dependency: "direct main"
description: flutter
source: sdk
version: "0.0.0"
flutter_spinkit:
dependency: "direct main"
description:
name: flutter_spinkit
url: "https://pub.dartlang.org"
source: hosted
version: "4.1.2+1"
flutter_svg:
dependency: "direct main"
description:
name: flutter_svg
url: "https://pub.dartlang.org"
source: hosted
version: "0.19.1"
flutter_test:
dependency: "direct dev"
description: flutter
source: sdk
version: "0.0.0"
flutter_web_plugins:
dependency: transitive
description: flutter
source: sdk
version: "0.0.0"
google_fonts:
dependency: "direct main"
description:
name: google_fonts
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.1"
http:
dependency: "direct main"
description:
name: http
url: "https://pub.dartlang.org"
source: hosted
version: "0.12.2"
http_parser:
dependency: transitive
description:
name: http_parser
url: "https://pub.dartlang.org"
source: hosted
version: "3.1.4"
intl:
dependency: transitive
description:
name: intl
url: "https://pub.dartlang.org"
source: hosted
version: "0.16.1"
matcher:
dependency: transitive
description:
name: matcher
url: "https://pub.dartlang.org"
source: hosted
version: "0.12.10-nullsafety.1"
meta:
dependency: transitive
description:
name: meta
url: "https://pub.dartlang.org"
source: hosted
version: "1.3.0-nullsafety.3"
nested:
dependency: transitive
description:
name: nested
url: "https://pub.dartlang.org"
source: hosted
version: "0.0.4"
path:
dependency: transitive
description:
name: path
url: "https://pub.dartlang.org"
source: hosted
version: "1.8.0-nullsafety.1"
path_drawing:
dependency: transitive
description:
name: path_drawing
url: "https://pub.dartlang.org"
source: hosted
version: "0.4.1+1"
path_parsing:
dependency: transitive
description:
name: path_parsing
url: "https://pub.dartlang.org"
source: hosted
version: "0.1.4"
path_provider:
dependency: transitive
description:
name: path_provider
url: "https://pub.dartlang.org"
source: hosted
version: "1.6.24"
path_provider_linux:
dependency: transitive
description:
name: path_provider_linux
url: "https://pub.dartlang.org"
source: hosted
version: "0.0.1+2"
path_provider_macos:
dependency: transitive
description:
name: path_provider_macos
url: "https://pub.dartlang.org"
source: hosted
version: "0.0.4+6"
path_provider_platform_interface:
dependency: transitive
description:
name: path_provider_platform_interface
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.4"
path_provider_windows:
dependency: transitive
description:
name: path_provider_windows
url: "https://pub.dartlang.org"
source: hosted
version: "0.0.4+3"
pedantic:
dependency: transitive
description:
name: pedantic
url: "https://pub.dartlang.org"
source: hosted
version: "1.9.2"
petitparser:
dependency: transitive
description:
name: petitparser
url: "https://pub.dartlang.org"
source: hosted
version: "3.1.0"
pin_code_fields:
dependency: "direct main"
description:
name: pin_code_fields
url: "https://pub.dartlang.org"
source: hosted
version: "6.0.1"
platform:
dependency: transitive
description:
name: platform
url: "https://pub.dartlang.org"
source: hosted
version: "2.2.1"
plugin_platform_interface:
dependency: transitive
description:
name: plugin_platform_interface
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.3"
process:
dependency: transitive
description:
name: process
url: "https://pub.dartlang.org"
source: hosted
version: "3.0.13"
provider:
dependency: "direct main"
description:
name: provider
url: "https://pub.dartlang.org"
source: hosted
version: "4.3.2+2"
shared_preferences:
dependency: "direct main"
description:
name: shared_preferences
url: "https://pub.dartlang.org"
source: hosted
version: "0.5.12+4"
shared_preferences_linux:
dependency: transitive
description:
name: shared_preferences_linux
url: "https://pub.dartlang.org"
source: hosted
version: "0.0.2+4"
shared_preferences_macos:
dependency: transitive
description:
name: shared_preferences_macos
url: "https://pub.dartlang.org"
source: hosted
version: "0.0.1+11"
shared_preferences_platform_interface:
dependency: transitive
description:
name: shared_preferences_platform_interface
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.4"
shared_preferences_web:
dependency: transitive
description:
name: shared_preferences_web
url: "https://pub.dartlang.org"
source: hosted
version: "0.1.2+7"
shared_preferences_windows:
dependency: transitive
description:
name: shared_preferences_windows
url: "https://pub.dartlang.org"
source: hosted
version: "0.0.1+3"
sky_engine:
dependency: transitive
description: flutter
source: sdk
version: "0.0.99"
source_span:
dependency: transitive
description:
name: source_span
url: "https://pub.dartlang.org"
source: hosted
version: "1.8.0-nullsafety.2"
stack_trace:
dependency: transitive
description:
name: stack_trace
url: "https://pub.dartlang.org"
source: hosted
version: "1.10.0-nullsafety.1"
stream_channel:
dependency: transitive
description:
name: stream_channel
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.0-nullsafety.1"
string_scanner:
dependency: transitive
description:
name: string_scanner
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.0-nullsafety.1"
term_glyph:
dependency: transitive
description:
name: term_glyph
url: "https://pub.dartlang.org"
source: hosted
version: "1.2.0-nullsafety.1"
test_api:
dependency: transitive
description:
name: test_api
url: "https://pub.dartlang.org"
source: hosted
version: "0.2.19-nullsafety.2"
typed_data:
dependency: transitive
description:
name: typed_data
url: "https://pub.dartlang.org"
source: hosted
version: "1.3.0-nullsafety.3"
vector_math:
dependency: transitive
description:
name: vector_math
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.0-nullsafety.3"
win32:
dependency: transitive
description:
name: win32
url: "https://pub.dartlang.org"
source: hosted
version: "1.7.4"
xdg_directories:
dependency: transitive
description:
name: xdg_directories
url: "https://pub.dartlang.org"
source: hosted
version: "0.1.2"
xml:
dependency: transitive
description:
name: xml
url: "https://pub.dartlang.org"
source: hosted
version: "4.5.1"
sdks:
dart: ">=2.10.0-110 <2.11.0"
flutter: ">=1.22.0 <2.0.0"

84
pubspec.yaml Normal file
View file

@ -0,0 +1,84 @@
name: robo_advisory
description: A new Flutter project.
# The following line prevents the package from being accidentally published to
# pub.dev using `pub publish`. This is preferred for private packages.
publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# The following defines the version and build number for your application.
# A version number is three numbers separated by dots, like 1.2.43
# followed by an optional build number separated by a +.
# Both the version and the builder number may be overridden in flutter
# build by specifying --build-name and --build-number, respectively.
# In Android, build-name is used as versionName while build-number used as versionCode.
# Read more about Android versioning at https://developer.android.com/studio/publish/versioning
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 1.0.0+1
environment:
sdk: ">=2.7.0 <3.0.0"
dependencies:
flutter:
sdk: flutter
# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^1.0.0
provider: ^4.3.2+2
http: ^0.12.2
shared_preferences: ^0.5.12+4
flutter_spinkit: ^4.1.2+1
pin_code_fields: ^6.0.1
flutter_svg: ^0.19.1
google_fonts: ^1.1.1
dev_dependencies:
flutter_test:
sdk: flutter
# For information on the generic Dart part of this file, see the
# following page: https://dart.dev/tools/pub/pubspec
# The following section is specific to Flutter.
flutter:
# The following line ensures that the Material Icons font is
# included with your application, so that you can use the icons in
# the material Icons class.
uses-material-design: true
assets:
- images/icons/
# To add assets to your application, add an assets section, like this:
# assets:
# - images/a_dot_burr.jpeg
# - images/a_dot_ham.jpeg
# An image asset can refer to one or more resolution-specific "variants", see
# https://flutter.dev/assets-and-images/#resolution-aware.
# For details regarding adding assets from package dependencies, see
# https://flutter.dev/assets-and-images/#from-packages
# To add custom fonts to your application, add a fonts section here,
# in this "flutter" section. Each entry in this list should have a
# "family" key with the font family name, and a "fonts" key with a
# list giving the asset and other descriptors for the font. For
# example:
# fonts:
# - family: Schyler
# fonts:
# - asset: fonts/Schyler-Regular.ttf
# - asset: fonts/Schyler-Italic.ttf
# style: italic
# - family: Trajan Pro
# fonts:
# - asset: fonts/TrajanPro.ttf
# - asset: fonts/TrajanPro_Bold.ttf
# weight: 700
#
# For details regarding fonts from package dependencies,
# see https://flutter.dev/custom-fonts/#from-packages

30
test/widget_test.dart Normal file
View file

@ -0,0 +1,30 @@
// This is a basic Flutter widget test.
//
// To perform an interaction with a widget in your test, use the WidgetTester
// utility that Flutter provides. For example, you can send tap and scroll
// gestures. You can also use WidgetTester to find child widgets in the widget
// tree, read text, and verify that the values of widget properties are correct.
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:robo_advisory/main.dart';
void main() {
testWidgets('Counter increments smoke test', (WidgetTester tester) async {
// Build our app and trigger a frame.
await tester.pumpWidget(MyApp());
// Verify that our counter starts at 0.
expect(find.text('0'), findsOneWidget);
expect(find.text('1'), findsNothing);
// Tap the '+' icon and trigger a frame.
await tester.tap(find.byIcon(Icons.add));
await tester.pump();
// Verify that our counter has incremented.
expect(find.text('0'), findsNothing);
expect(find.text('1'), findsOneWidget);
});
}