├── .gitignore ├── .metadata ├── LICENSE.md ├── README.md ├── android ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── flutter_ui_toucan_pay_app │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── fonts │ └── Quicksand-Regular.ttf └── images │ ├── man1.jpg │ ├── man2.jpg │ ├── man3.jpg │ ├── man4.jpg │ ├── man5.jpg │ ├── placeholder.jpg │ ├── woman1.jpg │ ├── woman2.jpg │ ├── woman3.jpg │ ├── woman4.jpg │ └── woman5.jpg ├── ios ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ └── contents.xcworkspacedata └── Runner │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── main.m ├── lib ├── _routing │ ├── router.dart │ └── routes.dart ├── app.dart ├── main.dart ├── utils.dart │ └── utils.dart └── views │ ├── home.dart │ ├── manage.dart │ └── trade.dart ├── pubspec.lock ├── pubspec.yaml └── screenshots ├── 1.png ├── 2.png └── 3.png /.gitignore: -------------------------------------------------------------------------------- 1 | # Miscellaneous 2 | *.class 3 | *.log 4 | *.pyc 5 | *.swp 6 | .DS_Store 7 | .atom/ 8 | .buildlog/ 9 | .history 10 | .svn/ 11 | 12 | # IntelliJ related 13 | *.iml 14 | *.ipr 15 | *.iws 16 | .idea/ 17 | 18 | # Visual Studio Code related 19 | .vscode/ 20 | 21 | # Flutter/Dart/Pub related 22 | **/doc/api/ 23 | .dart_tool/ 24 | .flutter-plugins 25 | .packages 26 | .pub-cache/ 27 | .pub/ 28 | /build/ 29 | 30 | # Android related 31 | **/android/**/gradle-wrapper.jar 32 | **/android/.gradle 33 | **/android/captures/ 34 | **/android/gradlew 35 | **/android/gradlew.bat 36 | **/android/local.properties 37 | **/android/**/GeneratedPluginRegistrant.java 38 | 39 | # iOS/XCode related 40 | **/ios/**/*.mode1v3 41 | **/ios/**/*.mode2v3 42 | **/ios/**/*.moved-aside 43 | **/ios/**/*.pbxuser 44 | **/ios/**/*.perspectivev3 45 | **/ios/**/*sync/ 46 | **/ios/**/.sconsign.dblite 47 | **/ios/**/.tags* 48 | **/ios/**/.vagrant/ 49 | **/ios/**/DerivedData/ 50 | **/ios/**/Icon? 51 | **/ios/**/Pods/ 52 | **/ios/**/.symlinks/ 53 | **/ios/**/profile 54 | **/ios/**/xcuserdata 55 | **/ios/.generated/ 56 | **/ios/Flutter/App.framework 57 | **/ios/Flutter/Flutter.framework 58 | **/ios/Flutter/Generated.xcconfig 59 | **/ios/Flutter/app.flx 60 | **/ios/Flutter/app.zip 61 | **/ios/Flutter/flutter_assets/ 62 | **/ios/ServiceDefinitions.json 63 | **/ios/Runner/GeneratedPluginRegistrant.* 64 | 65 | # Exceptions to above rules. 66 | !**/ios/**/default.mode1v3 67 | !**/ios/**/default.mode2v3 68 | !**/ios/**/default.pbxuser 69 | !**/ios/**/default.perspectivev3 70 | !/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages 71 | -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: 7a4c33425ddd78c54aba07d86f3f9a4a0051769b 8 | channel: stable 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Emmanuel Fache 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Flutter UI for ToucanPay App 2 | 3 | A Flutter representation of ToucanPay App UI design by Michał Jarosz in Dribble. 4 | 5 | 6 | Star this repo if you like what you see. 7 | 8 | ## 📸 Screenshots 9 | 10 | 11 | 12 | 13 | ## Author(s) 14 | **Emmanuel Fache** 15 | 16 | ## Getting Started 17 | 18 | **Note**: Make sure your Flutter environment is setup. 19 | #### Installation 20 | 21 | In the command terminal, run the following commands: 22 | 23 | $ git clone https://github.com/emrade/flutter-ui-toucanpay-app.git toucanpay_app 24 | $ cd toucanpay_app/ 25 | $ flutter packages get 26 | $ flutter run 27 | 28 | ##### Check out Flutter’s online [documentation](http://flutter.io/) for help getting started with your Flutter project. 29 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | def localProperties = new Properties() 2 | def localPropertiesFile = rootProject.file('local.properties') 3 | if (localPropertiesFile.exists()) { 4 | localPropertiesFile.withReader('UTF-8') { reader -> 5 | localProperties.load(reader) 6 | } 7 | } 8 | 9 | def flutterRoot = localProperties.getProperty('flutter.sdk') 10 | if (flutterRoot == null) { 11 | throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") 12 | } 13 | 14 | def flutterVersionCode = localProperties.getProperty('flutter.versionCode') 15 | if (flutterVersionCode == null) { 16 | flutterVersionCode = '1' 17 | } 18 | 19 | def flutterVersionName = localProperties.getProperty('flutter.versionName') 20 | if (flutterVersionName == null) { 21 | flutterVersionName = '1.0' 22 | } 23 | 24 | apply plugin: 'com.android.application' 25 | apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" 26 | 27 | android { 28 | compileSdkVersion 28 29 | 30 | lintOptions { 31 | disable 'InvalidPackage' 32 | } 33 | 34 | defaultConfig { 35 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). 36 | applicationId "com.example.flutter_ui_toucan_pay_app" 37 | minSdkVersion 16 38 | targetSdkVersion 28 39 | versionCode flutterVersionCode.toInteger() 40 | versionName flutterVersionName 41 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 42 | } 43 | 44 | buildTypes { 45 | release { 46 | // TODO: Add your own signing config for the release build. 47 | // Signing with the debug keys for now, so `flutter run --release` works. 48 | signingConfig signingConfigs.debug 49 | } 50 | } 51 | } 52 | 53 | flutter { 54 | source '../..' 55 | } 56 | 57 | dependencies { 58 | testImplementation 'junit:junit:4.12' 59 | androidTestImplementation 'com.android.support.test:runner:1.0.2' 60 | androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' 61 | } 62 | -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 9 | 13 | 20 | 24 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/example/flutter_ui_toucan_pay_app/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.example.flutter_ui_toucan_pay_app; 2 | 3 | import android.os.Bundle; 4 | import io.flutter.app.FlutterActivity; 5 | import io.flutter.plugins.GeneratedPluginRegistrant; 6 | 7 | public class MainActivity extends FlutterActivity { 8 | @Override 9 | protected void onCreate(Bundle savedInstanceState) { 10 | super.onCreate(savedInstanceState); 11 | GeneratedPluginRegistrant.registerWith(this); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | repositories { 3 | google() 4 | jcenter() 5 | } 6 | 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:3.2.1' 9 | } 10 | } 11 | 12 | allprojects { 13 | repositories { 14 | google() 15 | jcenter() 16 | } 17 | } 18 | 19 | rootProject.buildDir = '../build' 20 | subprojects { 21 | project.buildDir = "${rootProject.buildDir}/${project.name}" 22 | } 23 | subprojects { 24 | project.evaluationDependsOn(':app') 25 | } 26 | 27 | task clean(type: Delete) { 28 | delete rootProject.buildDir 29 | } 30 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 23 08:50:38 CEST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-all.zip 7 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | 3 | def flutterProjectRoot = rootProject.projectDir.parentFile.toPath() 4 | 5 | def plugins = new Properties() 6 | def pluginsFile = new File(flutterProjectRoot.toFile(), '.flutter-plugins') 7 | if (pluginsFile.exists()) { 8 | pluginsFile.withReader('UTF-8') { reader -> plugins.load(reader) } 9 | } 10 | 11 | plugins.each { name, path -> 12 | def pluginDirectory = flutterProjectRoot.resolve(path).resolve('android').toFile() 13 | include ":$name" 14 | project(":$name").projectDir = pluginDirectory 15 | } 16 | -------------------------------------------------------------------------------- /assets/fonts/Quicksand-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/assets/fonts/Quicksand-Regular.ttf -------------------------------------------------------------------------------- /assets/images/man1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/assets/images/man1.jpg -------------------------------------------------------------------------------- /assets/images/man2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/assets/images/man2.jpg -------------------------------------------------------------------------------- /assets/images/man3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/assets/images/man3.jpg -------------------------------------------------------------------------------- /assets/images/man4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/assets/images/man4.jpg -------------------------------------------------------------------------------- /assets/images/man5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/assets/images/man5.jpg -------------------------------------------------------------------------------- /assets/images/placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/assets/images/placeholder.jpg -------------------------------------------------------------------------------- /assets/images/woman1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/assets/images/woman1.jpg -------------------------------------------------------------------------------- /assets/images/woman2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/assets/images/woman2.jpg -------------------------------------------------------------------------------- /assets/images/woman3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/assets/images/woman3.jpg -------------------------------------------------------------------------------- /assets/images/woman4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/assets/images/woman4.jpg -------------------------------------------------------------------------------- /assets/images/woman5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/assets/images/woman5.jpg -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | App 9 | CFBundleIdentifier 10 | io.flutter.flutter.app 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | App 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0 23 | MinimumOSVersion 24 | 8.0 25 | 26 | 27 | -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; 11 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; 12 | 3B80C3941E831B6300D905FE /* App.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; }; 13 | 3B80C3951E831B6300D905FE /* App.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 14 | 9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; }; 15 | 9705A1C71CF904A300538489 /* Flutter.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 16 | 9740EEB41CF90195004384FC /* Debug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 9740EEB21CF90195004384FC /* Debug.xcconfig */; }; 17 | 978B8F6F1D3862AE00F588F7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */; }; 18 | 97C146F31CF9000F007C117D /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 97C146F21CF9000F007C117D /* main.m */; }; 19 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; 20 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; 21 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; 22 | /* End PBXBuildFile section */ 23 | 24 | /* Begin PBXCopyFilesBuildPhase section */ 25 | 9705A1C41CF9048500538489 /* Embed Frameworks */ = { 26 | isa = PBXCopyFilesBuildPhase; 27 | buildActionMask = 2147483647; 28 | dstPath = ""; 29 | dstSubfolderSpec = 10; 30 | files = ( 31 | 3B80C3951E831B6300D905FE /* App.framework in Embed Frameworks */, 32 | 9705A1C71CF904A300538489 /* Flutter.framework in Embed Frameworks */, 33 | ); 34 | name = "Embed Frameworks"; 35 | runOnlyForDeploymentPostprocessing = 0; 36 | }; 37 | /* End PBXCopyFilesBuildPhase section */ 38 | 39 | /* Begin PBXFileReference section */ 40 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; 41 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; 42 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; 43 | 3B80C3931E831B6300D905FE /* App.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = App.framework; path = Flutter/App.framework; sourceTree = ""; }; 44 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; 45 | 7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; 46 | 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; 47 | 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; 48 | 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; 49 | 9740EEBA1CF902C7004384FC /* Flutter.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Flutter.framework; path = Flutter/Flutter.framework; sourceTree = ""; }; 50 | 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; 51 | 97C146F21CF9000F007C117D /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 52 | 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 53 | 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 54 | 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 55 | 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 56 | /* End PBXFileReference section */ 57 | 58 | /* Begin PBXFrameworksBuildPhase section */ 59 | 97C146EB1CF9000F007C117D /* Frameworks */ = { 60 | isa = PBXFrameworksBuildPhase; 61 | buildActionMask = 2147483647; 62 | files = ( 63 | 9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */, 64 | 3B80C3941E831B6300D905FE /* App.framework in Frameworks */, 65 | ); 66 | runOnlyForDeploymentPostprocessing = 0; 67 | }; 68 | /* End PBXFrameworksBuildPhase section */ 69 | 70 | /* Begin PBXGroup section */ 71 | 9740EEB11CF90186004384FC /* Flutter */ = { 72 | isa = PBXGroup; 73 | children = ( 74 | 3B80C3931E831B6300D905FE /* App.framework */, 75 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, 76 | 9740EEBA1CF902C7004384FC /* Flutter.framework */, 77 | 9740EEB21CF90195004384FC /* Debug.xcconfig */, 78 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, 79 | 9740EEB31CF90195004384FC /* Generated.xcconfig */, 80 | ); 81 | name = Flutter; 82 | sourceTree = ""; 83 | }; 84 | 97C146E51CF9000F007C117D = { 85 | isa = PBXGroup; 86 | children = ( 87 | 9740EEB11CF90186004384FC /* Flutter */, 88 | 97C146F01CF9000F007C117D /* Runner */, 89 | 97C146EF1CF9000F007C117D /* Products */, 90 | CF3B75C9A7D2FA2A4C99F110 /* Frameworks */, 91 | ); 92 | sourceTree = ""; 93 | }; 94 | 97C146EF1CF9000F007C117D /* Products */ = { 95 | isa = PBXGroup; 96 | children = ( 97 | 97C146EE1CF9000F007C117D /* Runner.app */, 98 | ); 99 | name = Products; 100 | sourceTree = ""; 101 | }; 102 | 97C146F01CF9000F007C117D /* Runner */ = { 103 | isa = PBXGroup; 104 | children = ( 105 | 7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */, 106 | 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */, 107 | 97C146FA1CF9000F007C117D /* Main.storyboard */, 108 | 97C146FD1CF9000F007C117D /* Assets.xcassets */, 109 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, 110 | 97C147021CF9000F007C117D /* Info.plist */, 111 | 97C146F11CF9000F007C117D /* Supporting Files */, 112 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, 113 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, 114 | ); 115 | path = Runner; 116 | sourceTree = ""; 117 | }; 118 | 97C146F11CF9000F007C117D /* Supporting Files */ = { 119 | isa = PBXGroup; 120 | children = ( 121 | 97C146F21CF9000F007C117D /* main.m */, 122 | ); 123 | name = "Supporting Files"; 124 | sourceTree = ""; 125 | }; 126 | /* End PBXGroup section */ 127 | 128 | /* Begin PBXNativeTarget section */ 129 | 97C146ED1CF9000F007C117D /* Runner */ = { 130 | isa = PBXNativeTarget; 131 | buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; 132 | buildPhases = ( 133 | 9740EEB61CF901F6004384FC /* Run Script */, 134 | 97C146EA1CF9000F007C117D /* Sources */, 135 | 97C146EB1CF9000F007C117D /* Frameworks */, 136 | 97C146EC1CF9000F007C117D /* Resources */, 137 | 9705A1C41CF9048500538489 /* Embed Frameworks */, 138 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */, 139 | ); 140 | buildRules = ( 141 | ); 142 | dependencies = ( 143 | ); 144 | name = Runner; 145 | productName = Runner; 146 | productReference = 97C146EE1CF9000F007C117D /* Runner.app */; 147 | productType = "com.apple.product-type.application"; 148 | }; 149 | /* End PBXNativeTarget section */ 150 | 151 | /* Begin PBXProject section */ 152 | 97C146E61CF9000F007C117D /* Project object */ = { 153 | isa = PBXProject; 154 | attributes = { 155 | LastUpgradeCheck = 0910; 156 | ORGANIZATIONNAME = "The Chromium Authors"; 157 | TargetAttributes = { 158 | 97C146ED1CF9000F007C117D = { 159 | CreatedOnToolsVersion = 7.3.1; 160 | }; 161 | }; 162 | }; 163 | buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; 164 | compatibilityVersion = "Xcode 3.2"; 165 | developmentRegion = English; 166 | hasScannedForEncodings = 0; 167 | knownRegions = ( 168 | en, 169 | Base, 170 | ); 171 | mainGroup = 97C146E51CF9000F007C117D; 172 | productRefGroup = 97C146EF1CF9000F007C117D /* Products */; 173 | projectDirPath = ""; 174 | projectRoot = ""; 175 | targets = ( 176 | 97C146ED1CF9000F007C117D /* Runner */, 177 | ); 178 | }; 179 | /* End PBXProject section */ 180 | 181 | /* Begin PBXResourcesBuildPhase section */ 182 | 97C146EC1CF9000F007C117D /* Resources */ = { 183 | isa = PBXResourcesBuildPhase; 184 | buildActionMask = 2147483647; 185 | files = ( 186 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, 187 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, 188 | 9740EEB41CF90195004384FC /* Debug.xcconfig in Resources */, 189 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, 190 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, 191 | ); 192 | runOnlyForDeploymentPostprocessing = 0; 193 | }; 194 | /* End PBXResourcesBuildPhase section */ 195 | 196 | /* Begin PBXShellScriptBuildPhase section */ 197 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { 198 | isa = PBXShellScriptBuildPhase; 199 | buildActionMask = 2147483647; 200 | files = ( 201 | ); 202 | inputPaths = ( 203 | ); 204 | name = "Thin Binary"; 205 | outputPaths = ( 206 | ); 207 | runOnlyForDeploymentPostprocessing = 0; 208 | shellPath = /bin/sh; 209 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" thin"; 210 | }; 211 | 9740EEB61CF901F6004384FC /* Run Script */ = { 212 | isa = PBXShellScriptBuildPhase; 213 | buildActionMask = 2147483647; 214 | files = ( 215 | ); 216 | inputPaths = ( 217 | ); 218 | name = "Run Script"; 219 | outputPaths = ( 220 | ); 221 | runOnlyForDeploymentPostprocessing = 0; 222 | shellPath = /bin/sh; 223 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; 224 | }; 225 | /* End PBXShellScriptBuildPhase section */ 226 | 227 | /* Begin PBXSourcesBuildPhase section */ 228 | 97C146EA1CF9000F007C117D /* Sources */ = { 229 | isa = PBXSourcesBuildPhase; 230 | buildActionMask = 2147483647; 231 | files = ( 232 | 978B8F6F1D3862AE00F588F7 /* AppDelegate.m in Sources */, 233 | 97C146F31CF9000F007C117D /* main.m in Sources */, 234 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, 235 | ); 236 | runOnlyForDeploymentPostprocessing = 0; 237 | }; 238 | /* End PBXSourcesBuildPhase section */ 239 | 240 | /* Begin PBXVariantGroup section */ 241 | 97C146FA1CF9000F007C117D /* Main.storyboard */ = { 242 | isa = PBXVariantGroup; 243 | children = ( 244 | 97C146FB1CF9000F007C117D /* Base */, 245 | ); 246 | name = Main.storyboard; 247 | sourceTree = ""; 248 | }; 249 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { 250 | isa = PBXVariantGroup; 251 | children = ( 252 | 97C147001CF9000F007C117D /* Base */, 253 | ); 254 | name = LaunchScreen.storyboard; 255 | sourceTree = ""; 256 | }; 257 | /* End PBXVariantGroup section */ 258 | 259 | /* Begin XCBuildConfiguration section */ 260 | 249021D3217E4FDB00AE95B9 /* Profile */ = { 261 | isa = XCBuildConfiguration; 262 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 263 | buildSettings = { 264 | ALWAYS_SEARCH_USER_PATHS = NO; 265 | CLANG_ANALYZER_NONNULL = YES; 266 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 267 | CLANG_CXX_LIBRARY = "libc++"; 268 | CLANG_ENABLE_MODULES = YES; 269 | CLANG_ENABLE_OBJC_ARC = YES; 270 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 271 | CLANG_WARN_BOOL_CONVERSION = YES; 272 | CLANG_WARN_COMMA = YES; 273 | CLANG_WARN_CONSTANT_CONVERSION = YES; 274 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 275 | CLANG_WARN_EMPTY_BODY = YES; 276 | CLANG_WARN_ENUM_CONVERSION = YES; 277 | CLANG_WARN_INFINITE_RECURSION = YES; 278 | CLANG_WARN_INT_CONVERSION = YES; 279 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 280 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 281 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 282 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 283 | CLANG_WARN_STRICT_PROTOTYPES = YES; 284 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 285 | CLANG_WARN_UNREACHABLE_CODE = YES; 286 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 287 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 288 | COPY_PHASE_STRIP = NO; 289 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 290 | ENABLE_NS_ASSERTIONS = NO; 291 | ENABLE_STRICT_OBJC_MSGSEND = YES; 292 | GCC_C_LANGUAGE_STANDARD = gnu99; 293 | GCC_NO_COMMON_BLOCKS = YES; 294 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 295 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 296 | GCC_WARN_UNDECLARED_SELECTOR = YES; 297 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 298 | GCC_WARN_UNUSED_FUNCTION = YES; 299 | GCC_WARN_UNUSED_VARIABLE = YES; 300 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 301 | MTL_ENABLE_DEBUG_INFO = NO; 302 | SDKROOT = iphoneos; 303 | TARGETED_DEVICE_FAMILY = "1,2"; 304 | VALIDATE_PRODUCT = YES; 305 | }; 306 | name = Profile; 307 | }; 308 | 249021D4217E4FDB00AE95B9 /* Profile */ = { 309 | isa = XCBuildConfiguration; 310 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 311 | buildSettings = { 312 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 313 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 314 | DEVELOPMENT_TEAM = S8QB4VV633; 315 | ENABLE_BITCODE = NO; 316 | FRAMEWORK_SEARCH_PATHS = ( 317 | "$(inherited)", 318 | "$(PROJECT_DIR)/Flutter", 319 | ); 320 | INFOPLIST_FILE = Runner/Info.plist; 321 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 322 | LIBRARY_SEARCH_PATHS = ( 323 | "$(inherited)", 324 | "$(PROJECT_DIR)/Flutter", 325 | ); 326 | PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterUiToucanPayApp; 327 | PRODUCT_NAME = "$(TARGET_NAME)"; 328 | VERSIONING_SYSTEM = "apple-generic"; 329 | }; 330 | name = Profile; 331 | }; 332 | 97C147031CF9000F007C117D /* Debug */ = { 333 | isa = XCBuildConfiguration; 334 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 335 | buildSettings = { 336 | ALWAYS_SEARCH_USER_PATHS = NO; 337 | CLANG_ANALYZER_NONNULL = YES; 338 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 339 | CLANG_CXX_LIBRARY = "libc++"; 340 | CLANG_ENABLE_MODULES = YES; 341 | CLANG_ENABLE_OBJC_ARC = YES; 342 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 343 | CLANG_WARN_BOOL_CONVERSION = YES; 344 | CLANG_WARN_COMMA = YES; 345 | CLANG_WARN_CONSTANT_CONVERSION = YES; 346 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 347 | CLANG_WARN_EMPTY_BODY = YES; 348 | CLANG_WARN_ENUM_CONVERSION = YES; 349 | CLANG_WARN_INFINITE_RECURSION = YES; 350 | CLANG_WARN_INT_CONVERSION = YES; 351 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 352 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 353 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 354 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 355 | CLANG_WARN_STRICT_PROTOTYPES = YES; 356 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 357 | CLANG_WARN_UNREACHABLE_CODE = YES; 358 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 359 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 360 | COPY_PHASE_STRIP = NO; 361 | DEBUG_INFORMATION_FORMAT = dwarf; 362 | ENABLE_STRICT_OBJC_MSGSEND = YES; 363 | ENABLE_TESTABILITY = YES; 364 | GCC_C_LANGUAGE_STANDARD = gnu99; 365 | GCC_DYNAMIC_NO_PIC = NO; 366 | GCC_NO_COMMON_BLOCKS = YES; 367 | GCC_OPTIMIZATION_LEVEL = 0; 368 | GCC_PREPROCESSOR_DEFINITIONS = ( 369 | "DEBUG=1", 370 | "$(inherited)", 371 | ); 372 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 373 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 374 | GCC_WARN_UNDECLARED_SELECTOR = YES; 375 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 376 | GCC_WARN_UNUSED_FUNCTION = YES; 377 | GCC_WARN_UNUSED_VARIABLE = YES; 378 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 379 | MTL_ENABLE_DEBUG_INFO = YES; 380 | ONLY_ACTIVE_ARCH = YES; 381 | SDKROOT = iphoneos; 382 | TARGETED_DEVICE_FAMILY = "1,2"; 383 | }; 384 | name = Debug; 385 | }; 386 | 97C147041CF9000F007C117D /* Release */ = { 387 | isa = XCBuildConfiguration; 388 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 389 | buildSettings = { 390 | ALWAYS_SEARCH_USER_PATHS = NO; 391 | CLANG_ANALYZER_NONNULL = YES; 392 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 393 | CLANG_CXX_LIBRARY = "libc++"; 394 | CLANG_ENABLE_MODULES = YES; 395 | CLANG_ENABLE_OBJC_ARC = YES; 396 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 397 | CLANG_WARN_BOOL_CONVERSION = YES; 398 | CLANG_WARN_COMMA = YES; 399 | CLANG_WARN_CONSTANT_CONVERSION = YES; 400 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 401 | CLANG_WARN_EMPTY_BODY = YES; 402 | CLANG_WARN_ENUM_CONVERSION = YES; 403 | CLANG_WARN_INFINITE_RECURSION = YES; 404 | CLANG_WARN_INT_CONVERSION = YES; 405 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 406 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 407 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 408 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 409 | CLANG_WARN_STRICT_PROTOTYPES = YES; 410 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 411 | CLANG_WARN_UNREACHABLE_CODE = YES; 412 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 413 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 414 | COPY_PHASE_STRIP = NO; 415 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 416 | ENABLE_NS_ASSERTIONS = NO; 417 | ENABLE_STRICT_OBJC_MSGSEND = YES; 418 | GCC_C_LANGUAGE_STANDARD = gnu99; 419 | GCC_NO_COMMON_BLOCKS = YES; 420 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 421 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 422 | GCC_WARN_UNDECLARED_SELECTOR = YES; 423 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 424 | GCC_WARN_UNUSED_FUNCTION = YES; 425 | GCC_WARN_UNUSED_VARIABLE = YES; 426 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 427 | MTL_ENABLE_DEBUG_INFO = NO; 428 | SDKROOT = iphoneos; 429 | TARGETED_DEVICE_FAMILY = "1,2"; 430 | VALIDATE_PRODUCT = YES; 431 | }; 432 | name = Release; 433 | }; 434 | 97C147061CF9000F007C117D /* Debug */ = { 435 | isa = XCBuildConfiguration; 436 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 437 | buildSettings = { 438 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 439 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 440 | ENABLE_BITCODE = NO; 441 | FRAMEWORK_SEARCH_PATHS = ( 442 | "$(inherited)", 443 | "$(PROJECT_DIR)/Flutter", 444 | ); 445 | INFOPLIST_FILE = Runner/Info.plist; 446 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 447 | LIBRARY_SEARCH_PATHS = ( 448 | "$(inherited)", 449 | "$(PROJECT_DIR)/Flutter", 450 | ); 451 | PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterUiToucanPayApp; 452 | PRODUCT_NAME = "$(TARGET_NAME)"; 453 | VERSIONING_SYSTEM = "apple-generic"; 454 | }; 455 | name = Debug; 456 | }; 457 | 97C147071CF9000F007C117D /* Release */ = { 458 | isa = XCBuildConfiguration; 459 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 460 | buildSettings = { 461 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 462 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 463 | ENABLE_BITCODE = NO; 464 | FRAMEWORK_SEARCH_PATHS = ( 465 | "$(inherited)", 466 | "$(PROJECT_DIR)/Flutter", 467 | ); 468 | INFOPLIST_FILE = Runner/Info.plist; 469 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 470 | LIBRARY_SEARCH_PATHS = ( 471 | "$(inherited)", 472 | "$(PROJECT_DIR)/Flutter", 473 | ); 474 | PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterUiToucanPayApp; 475 | PRODUCT_NAME = "$(TARGET_NAME)"; 476 | VERSIONING_SYSTEM = "apple-generic"; 477 | }; 478 | name = Release; 479 | }; 480 | /* End XCBuildConfiguration section */ 481 | 482 | /* Begin XCConfigurationList section */ 483 | 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { 484 | isa = XCConfigurationList; 485 | buildConfigurations = ( 486 | 97C147031CF9000F007C117D /* Debug */, 487 | 97C147041CF9000F007C117D /* Release */, 488 | 249021D3217E4FDB00AE95B9 /* Profile */, 489 | ); 490 | defaultConfigurationIsVisible = 0; 491 | defaultConfigurationName = Release; 492 | }; 493 | 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { 494 | isa = XCConfigurationList; 495 | buildConfigurations = ( 496 | 97C147061CF9000F007C117D /* Debug */, 497 | 97C147071CF9000F007C117D /* Release */, 498 | 249021D4217E4FDB00AE95B9 /* Profile */, 499 | ); 500 | defaultConfigurationIsVisible = 0; 501 | defaultConfigurationName = Release; 502 | }; 503 | /* End XCConfigurationList section */ 504 | }; 505 | rootObject = 97C146E61CF9000F007C117D /* Project object */; 506 | } 507 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 31 | 32 | 33 | 34 | 40 | 41 | 42 | 43 | 44 | 45 | 56 | 58 | 64 | 65 | 66 | 67 | 68 | 69 | 75 | 77 | 83 | 84 | 85 | 86 | 88 | 89 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- 1 | #include "AppDelegate.h" 2 | #include "GeneratedPluginRegistrant.h" 3 | 4 | @implementation AppDelegate 5 | 6 | - (BOOL)application:(UIApplication *)application 7 | didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 8 | [GeneratedPluginRegistrant registerWithRegistry:self]; 9 | // Override point for customization after application launch. 10 | return [super application:application didFinishLaunchingWithOptions:launchOptions]; 11 | } 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "size" : "20x20", 5 | "idiom" : "iphone", 6 | "filename" : "Icon-App-20x20@2x.png", 7 | "scale" : "2x" 8 | }, 9 | { 10 | "size" : "20x20", 11 | "idiom" : "iphone", 12 | "filename" : "Icon-App-20x20@3x.png", 13 | "scale" : "3x" 14 | }, 15 | { 16 | "size" : "29x29", 17 | "idiom" : "iphone", 18 | "filename" : "Icon-App-29x29@1x.png", 19 | "scale" : "1x" 20 | }, 21 | { 22 | "size" : "29x29", 23 | "idiom" : "iphone", 24 | "filename" : "Icon-App-29x29@2x.png", 25 | "scale" : "2x" 26 | }, 27 | { 28 | "size" : "29x29", 29 | "idiom" : "iphone", 30 | "filename" : "Icon-App-29x29@3x.png", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "size" : "40x40", 35 | "idiom" : "iphone", 36 | "filename" : "Icon-App-40x40@2x.png", 37 | "scale" : "2x" 38 | }, 39 | { 40 | "size" : "40x40", 41 | "idiom" : "iphone", 42 | "filename" : "Icon-App-40x40@3x.png", 43 | "scale" : "3x" 44 | }, 45 | { 46 | "size" : "60x60", 47 | "idiom" : "iphone", 48 | "filename" : "Icon-App-60x60@2x.png", 49 | "scale" : "2x" 50 | }, 51 | { 52 | "size" : "60x60", 53 | "idiom" : "iphone", 54 | "filename" : "Icon-App-60x60@3x.png", 55 | "scale" : "3x" 56 | }, 57 | { 58 | "size" : "20x20", 59 | "idiom" : "ipad", 60 | "filename" : "Icon-App-20x20@1x.png", 61 | "scale" : "1x" 62 | }, 63 | { 64 | "size" : "20x20", 65 | "idiom" : "ipad", 66 | "filename" : "Icon-App-20x20@2x.png", 67 | "scale" : "2x" 68 | }, 69 | { 70 | "size" : "29x29", 71 | "idiom" : "ipad", 72 | "filename" : "Icon-App-29x29@1x.png", 73 | "scale" : "1x" 74 | }, 75 | { 76 | "size" : "29x29", 77 | "idiom" : "ipad", 78 | "filename" : "Icon-App-29x29@2x.png", 79 | "scale" : "2x" 80 | }, 81 | { 82 | "size" : "40x40", 83 | "idiom" : "ipad", 84 | "filename" : "Icon-App-40x40@1x.png", 85 | "scale" : "1x" 86 | }, 87 | { 88 | "size" : "40x40", 89 | "idiom" : "ipad", 90 | "filename" : "Icon-App-40x40@2x.png", 91 | "scale" : "2x" 92 | }, 93 | { 94 | "size" : "76x76", 95 | "idiom" : "ipad", 96 | "filename" : "Icon-App-76x76@1x.png", 97 | "scale" : "1x" 98 | }, 99 | { 100 | "size" : "76x76", 101 | "idiom" : "ipad", 102 | "filename" : "Icon-App-76x76@2x.png", 103 | "scale" : "2x" 104 | }, 105 | { 106 | "size" : "83.5x83.5", 107 | "idiom" : "ipad", 108 | "filename" : "Icon-App-83.5x83.5@2x.png", 109 | "scale" : "2x" 110 | }, 111 | { 112 | "size" : "1024x1024", 113 | "idiom" : "ios-marketing", 114 | "filename" : "Icon-App-1024x1024@1x.png", 115 | "scale" : "1x" 116 | } 117 | ], 118 | "info" : { 119 | "version" : 1, 120 | "author" : "xcode" 121 | } 122 | } 123 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "LaunchImage.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "LaunchImage@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "LaunchImage@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- 1 | # Launch Screen Assets 2 | 3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory. 4 | 5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | flutter_ui_toucan_pay_app 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | $(FLUTTER_BUILD_NAME) 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | $(FLUTTER_BUILD_NUMBER) 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UISupportedInterfaceOrientations 30 | 31 | UIInterfaceOrientationPortrait 32 | UIInterfaceOrientationLandscapeLeft 33 | UIInterfaceOrientationLandscapeRight 34 | 35 | UISupportedInterfaceOrientations~ipad 36 | 37 | UIInterfaceOrientationPortrait 38 | UIInterfaceOrientationPortraitUpsideDown 39 | UIInterfaceOrientationLandscapeLeft 40 | UIInterfaceOrientationLandscapeRight 41 | 42 | UIViewControllerBasedStatusBarAppearance 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /ios/Runner/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | #import "AppDelegate.h" 4 | 5 | int main(int argc, char* argv[]) { 6 | @autoreleasepool { 7 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /lib/_routing/router.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_ui_toucan_pay_app/views/home.dart'; 3 | import 'package:flutter_ui_toucan_pay_app/views/manage.dart'; 4 | import 'package:flutter_ui_toucan_pay_app/views/trade.dart'; 5 | import 'routes.dart'; 6 | 7 | Route generateRoute(RouteSettings settings) { 8 | switch (settings.name) { 9 | case homeViewRoute: 10 | return MaterialPageRoute(builder: (context) => HomeView()); 11 | case tradeViewRoute: 12 | return MaterialPageRoute(builder: (context) => TradeView()); 13 | case manageViewRoute: 14 | return MaterialPageRoute(builder: (context) => ManageView()); 15 | break; 16 | default: 17 | return MaterialPageRoute(builder: (context) => HomeView()); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /lib/_routing/routes.dart: -------------------------------------------------------------------------------- 1 | const String homeViewRoute = '/'; 2 | const String tradeViewRoute = 'trade'; 3 | const String manageViewRoute = 'manage'; -------------------------------------------------------------------------------- /lib/app.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import '_routing/router.dart' as router; 3 | import '_routing/routes.dart'; 4 | 5 | class App extends StatelessWidget { 6 | @override 7 | Widget build(BuildContext context) { 8 | return MaterialApp( 9 | debugShowCheckedModeBanner: false, 10 | onGenerateRoute: router.generateRoute, 11 | initialRoute: homeViewRoute, 12 | ); 13 | } 14 | } -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'app.dart'; 3 | 4 | void main() => runApp(App()); -------------------------------------------------------------------------------- /lib/utils.dart/utils.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class Images { 4 | static const headerImage = const AssetImage('assets/images/placeholder.jpg'); 5 | static const man1 = const AssetImage('assets/images/man1.jpg'); 6 | static const man2 = const AssetImage('assets/images/man2.jpg'); 7 | static const man3 = const AssetImage('assets/images/man3.jpg'); 8 | static const man4 = const AssetImage('assets/images/man4.jpg'); 9 | static const man5 = const AssetImage('assets/images/man5.jpg'); 10 | 11 | static const woman1 = const AssetImage('assets/images/woman1.jpg'); 12 | static const woman2 = const AssetImage('assets/images/woman2.jpg'); 13 | static const woman3 = const AssetImage('assets/images/woman3.jpg'); 14 | static const woman4 = const AssetImage('assets/images/woman4.jpg'); 15 | static const woman5 = const AssetImage('assets/images/woman5.jpg'); 16 | } 17 | 18 | class Fonts { 19 | static const primaryFont = "Quicksand"; 20 | } 21 | 22 | class AppColors { 23 | static const primaryBlack = const Color(0xFF313544); 24 | static const primaryBlue = const Color(0xFF272F5F); 25 | static const secondaryColor = const Color(0xFFFF8C33); 26 | } 27 | 28 | class Texts { 29 | static const welcomeText = const Text( 30 | 'Welcome Onboard!', 31 | style: TextStyle( 32 | fontFamily: Fonts.primaryFont, 33 | fontSize: 28.0, 34 | color: AppColors.primaryBlue, 35 | fontWeight: FontWeight.bold, 36 | ), 37 | ); 38 | 39 | static const welcomeText2 = const Text( 40 | 'If you like please link your social media account to make it easy for other members to identify you.', 41 | style: TextStyle( 42 | fontFamily: Fonts.primaryFont, 43 | fontSize: 16.0, 44 | color: AppColors.primaryBlue, 45 | fontWeight: FontWeight.bold, 46 | ), 47 | textAlign: TextAlign.center, 48 | ); 49 | 50 | static const connectNowText = const Text( 51 | 'Connect now with', 52 | style: TextStyle( 53 | fontFamily: Fonts.primaryFont, 54 | fontSize: 18.0, 55 | color: AppColors.primaryBlue, 56 | fontWeight: FontWeight.bold, 57 | ), 58 | ); 59 | 60 | static const nextText = const Text( 61 | 'Next', 62 | style: TextStyle( 63 | fontFamily: Fonts.primaryFont, 64 | fontSize: 18.0, 65 | color: AppColors.secondaryColor, 66 | fontWeight: FontWeight.bold, 67 | ), 68 | ); 69 | 70 | static const headerTextTrade = const Text( 71 | 'Trade', 72 | style: TextStyle( 73 | fontFamily: Fonts.primaryFont, 74 | fontSize: 30.0, 75 | color: AppColors.primaryBlue, 76 | fontWeight: FontWeight.bold, 77 | ), 78 | ); 79 | 80 | static const headerTextTrade2 = const Text( 81 | 'I would like to trade:', 82 | style: TextStyle( 83 | fontFamily: Fonts.primaryFont, 84 | fontSize: 18.0, 85 | color: AppColors.primaryBlue, 86 | fontWeight: FontWeight.bold, 87 | ), 88 | ); 89 | 90 | static const headerTextTrade3 = const Text( 91 | 'For:', 92 | style: TextStyle( 93 | fontFamily: Fonts.primaryFont, 94 | fontSize: 18.0, 95 | color: AppColors.primaryBlue, 96 | fontWeight: FontWeight.bold, 97 | ), 98 | ); 99 | 100 | static const headerTextTrade4 = const Text( 101 | 'With:', 102 | style: TextStyle( 103 | fontFamily: Fonts.primaryFont, 104 | fontSize: 18.0, 105 | color: AppColors.primaryBlue, 106 | fontWeight: FontWeight.bold, 107 | ), 108 | ); 109 | 110 | static const makeOffer = const Text( 111 | 'Make Offer', 112 | style: TextStyle( 113 | fontFamily: Fonts.primaryFont, 114 | fontSize: 18.0, 115 | color: Colors.white, 116 | fontWeight: FontWeight.bold, 117 | ), 118 | ); 119 | 120 | static const headerTextManage = const Text( 121 | 'Manage', 122 | style: TextStyle( 123 | fontFamily: Fonts.primaryFont, 124 | fontSize: 30.0, 125 | color: AppColors.primaryBlue, 126 | fontWeight: FontWeight.bold, 127 | ), 128 | ); 129 | } 130 | 131 | class TabText { 132 | static const tabText1 = const Text( 133 | "Visible", 134 | style: TextStyle( 135 | fontFamily: Fonts.primaryFont, 136 | fontWeight: FontWeight.bold, 137 | fontSize: 20.0, 138 | ), 139 | ); 140 | 141 | static const tabText2 = const Text( 142 | "Hidden", 143 | style: TextStyle( 144 | fontFamily: Fonts.primaryFont, 145 | fontWeight: FontWeight.bold, 146 | fontSize: 20.0, 147 | ), 148 | ); 149 | } 150 | -------------------------------------------------------------------------------- /lib/views/home.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_ui_toucan_pay_app/_routing/routes.dart' as routes; 3 | import 'package:flutter_ui_toucan_pay_app/utils.dart/utils.dart'; 4 | import 'package:font_awesome_flutter/font_awesome_flutter.dart'; 5 | 6 | class HomeView extends StatelessWidget { 7 | @override 8 | Widget build(BuildContext context) { 9 | return Scaffold( 10 | body: ListView( 11 | children: [ 12 | Stack( 13 | children: [ 14 | Padding( 15 | padding: const EdgeInsets.only(bottom: 30.0), 16 | child: ClipPath( 17 | clipper: ClippingClass(), 18 | child: Container( 19 | height: 130.0, 20 | decoration: BoxDecoration(color: AppColors.primaryBlack), 21 | ), 22 | ), 23 | ), 24 | Positioned.fill( 25 | child: Align( 26 | alignment: Alignment.bottomCenter, 27 | child: Container( 28 | height: 90.0, 29 | width: 90.0, 30 | decoration: BoxDecoration( 31 | shape: BoxShape.circle, 32 | image: DecorationImage(image: Images.man1), 33 | border: Border.all( 34 | color: Colors.white, 35 | width: 5.0, 36 | ), 37 | ), 38 | ), 39 | ), 40 | ) 41 | ], 42 | ), 43 | Container( 44 | padding: const EdgeInsets.only(top: 32.0), 45 | child: Column( 46 | children: [ 47 | Texts.welcomeText, 48 | Padding( 49 | padding: 50 | const EdgeInsets.only(top: 22.0, left: 42.0, right: 42.0), 51 | child: Center(child: Texts.welcomeText2), 52 | ) 53 | ], 54 | ), 55 | ), 56 | Container( 57 | padding: const EdgeInsets.only(top: 50.0), 58 | child: Column( 59 | children: [ 60 | Stack( 61 | children: [ 62 | Positioned( 63 | left: -25.0, 64 | child: _buildUserImage(Images.man2, 50.0, 70.0), 65 | ), 66 | Row( 67 | mainAxisAlignment: MainAxisAlignment.spaceEvenly, 68 | children: [ 69 | _buildUserImage(Images.woman1, 36.0, 84.0), 70 | _buildUserImage(Images.woman2, 56.0, 30.0), 71 | _buildUserImage(Images.man3, 36.0, 90.0), 72 | _buildUserImage(Images.woman4, 70.0, 0.0), 73 | ], 74 | ), 75 | Positioned( 76 | right: -10.0, 77 | child: _buildUserImage(Images.woman3, 38.0, 100.0), 78 | ), 79 | ], 80 | ), 81 | ], 82 | ), 83 | ), 84 | Container( 85 | padding: const EdgeInsets.only(top: 50.0), 86 | child: Column( 87 | children: [ 88 | Texts.connectNowText, 89 | SizedBox( 90 | height: 30.0, 91 | ), 92 | Row( 93 | mainAxisAlignment: MainAxisAlignment.center, 94 | children: [ 95 | _buildIconCard(FontAwesomeIcons.facebookF), 96 | SizedBox( 97 | width: 10.0, 98 | ), 99 | _buildIconCard(FontAwesomeIcons.twitter), 100 | SizedBox( 101 | width: 10.0, 102 | ), 103 | _buildIconCard(FontAwesomeIcons.instagram), 104 | SizedBox( 105 | width: 10.0, 106 | ), 107 | _buildIconCard(FontAwesomeIcons.linkedinIn), 108 | ], 109 | ) 110 | ], 111 | ), 112 | ), 113 | Container( 114 | padding: EdgeInsets.only(top: 30.0), 115 | child: Column( 116 | children: [ 117 | InkWell( 118 | onTap: () { 119 | Navigator.pushNamed(context, routes.tradeViewRoute); 120 | }, 121 | child: Texts.nextText, 122 | ) 123 | ], 124 | ), 125 | ) 126 | ], 127 | ), 128 | ); 129 | } 130 | 131 | Widget _buildIconCard(IconData icon) { 132 | return Container( 133 | height: 60.0, 134 | width: 60.0, 135 | child: Material( 136 | borderRadius: BorderRadius.circular(12.0), 137 | elevation: 34.0, 138 | shadowColor: Colors.white70, 139 | child: MaterialButton( 140 | onPressed: () {}, 141 | child: Icon( 142 | icon, 143 | color: AppColors.secondaryColor, 144 | ), 145 | ), 146 | ), 147 | ); 148 | } 149 | 150 | Widget _buildUserImage(AssetImage img, double size, double margin) { 151 | return Container( 152 | margin: EdgeInsets.only(bottom: margin), 153 | height: size, 154 | width: size, 155 | decoration: BoxDecoration( 156 | shape: BoxShape.circle, 157 | image: DecorationImage( 158 | image: img, 159 | fit: BoxFit.cover, 160 | ), 161 | ), 162 | ); 163 | } 164 | } 165 | 166 | class ClippingClass extends CustomClipper { 167 | @override 168 | Path getClip(Size size) { 169 | var path = Path(); 170 | path.lineTo(0.0, size.height - 80); 171 | path.quadraticBezierTo( 172 | size.width / 4, 173 | size.height, 174 | size.width / 2, 175 | size.height, 176 | ); 177 | path.quadraticBezierTo( 178 | size.width - (size.width / 4), 179 | size.height, 180 | size.width, 181 | size.height - 80, 182 | ); 183 | path.lineTo(size.width, 0.0); 184 | path.close(); 185 | return path; 186 | } 187 | 188 | @override 189 | bool shouldReclip(CustomClipper oldClipper) => false; 190 | } 191 | -------------------------------------------------------------------------------- /lib/views/manage.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/cupertino.dart'; 2 | import 'package:flutter/material.dart'; 3 | import 'package:line_icons/line_icons.dart'; 4 | import 'package:flutter_ui_toucan_pay_app/utils.dart/utils.dart'; 5 | 6 | class ManageView extends StatefulWidget { 7 | @override 8 | _ManageViewState createState() => _ManageViewState(); 9 | } 10 | 11 | class _ManageViewState extends State 12 | with SingleTickerProviderStateMixin { 13 | TabController tabController; 14 | 15 | @override 16 | void initState() { 17 | super.initState(); 18 | tabController = TabController(vsync: this, length: 2); 19 | } 20 | 21 | @override 22 | void dispose() { 23 | tabController.dispose(); 24 | super.dispose(); 25 | } 26 | 27 | @override 28 | Widget build(BuildContext context) { 29 | return Scaffold( 30 | floatingActionButton: FloatingActionButton( 31 | backgroundColor: AppColors.primaryBlack, 32 | onPressed: () {}, 33 | child: Icon( 34 | Icons.add, 35 | color: Colors.white, 36 | ), 37 | ), 38 | body: SingleChildScrollView( 39 | child: Stack( 40 | children: [ 41 | Container( 42 | height: MediaQuery.of(context).size.height, 43 | ), 44 | Container( 45 | height: 300.0, 46 | child: Stack( 47 | children: [ 48 | Positioned.fill( 49 | bottom: 0, 50 | top: -260.0, 51 | right: -1100.0 + (MediaQuery.of(context).size.width), 52 | child: Container( 53 | height: 300.0, 54 | decoration: BoxDecoration( 55 | shape: BoxShape.circle, 56 | color: AppColors.primaryBlack, 57 | ), 58 | ), 59 | ), 60 | Positioned( 61 | top: 25.0, 62 | left: 20.0, 63 | child: IconButton( 64 | onPressed: () => Navigator.pop(context), 65 | icon: Icon( 66 | LineIcons.long_arrow_left, 67 | color: AppColors.primaryBlack, 68 | size: 35.0, 69 | ), 70 | ), 71 | ), 72 | Positioned( 73 | top: 25.0, 74 | right: 20.0, 75 | child: IconButton( 76 | icon: Icon( 77 | LineIcons.edit, 78 | color: Colors.white70, 79 | size: 35.0, 80 | ), 81 | onPressed: () { 82 | Navigator.pop(context); 83 | }, 84 | ), 85 | ), 86 | ], 87 | ), 88 | ), 89 | Positioned( 90 | top: 40.0, 91 | left: 20.0, 92 | bottom: 0.0, 93 | child: Container( 94 | padding: EdgeInsets.only(left: 15.0, top: 50.0), 95 | child: Column( 96 | crossAxisAlignment: CrossAxisAlignment.start, 97 | children: [ 98 | Texts.headerTextManage, 99 | SizedBox( 100 | height: 10.0, 101 | ), 102 | TabBar( 103 | controller: tabController, 104 | indicatorColor: Colors.transparent, 105 | labelColor: AppColors.secondaryColor, 106 | unselectedLabelColor: AppColors.primaryBlack, 107 | isScrollable: true, 108 | labelPadding: EdgeInsets.only(right: 25.0), 109 | tabs: [ 110 | Tab( 111 | child: TabText.tabText1, 112 | ), 113 | Tab( 114 | child: TabText.tabText2, 115 | ) 116 | ], 117 | ), 118 | Container( 119 | padding: EdgeInsets.only(top: 20.0, bottom: 100.0), 120 | child: Column( 121 | children: [ 122 | _buildExchangeRate(Color(0xFFFF7B2B), 123 | "British Pounds", "BGP", "620.00", context), 124 | SizedBox( 125 | height: 30.0, 126 | ), 127 | _buildExchangeRate(Color(0xFF62BCC4), "US Dollars", 128 | "USD", "0.90", context), 129 | SizedBox( 130 | height: 30.0, 131 | ), 132 | _buildExchangeRate(Color(0xFF6967B8), "Euro", "EUR", 133 | "190.0", context), 134 | ], 135 | ), 136 | ), 137 | ], 138 | ), 139 | ), 140 | ), 141 | ], 142 | ), 143 | ), 144 | ); 145 | } 146 | 147 | Widget _buildExchangeRate(Color color, String currencyName, 148 | String currencyCode, String amount, BuildContext context) { 149 | return Container( 150 | height: 100.0, 151 | width: MediaQuery.of(context).size.width - 60.0, 152 | decoration: BoxDecoration( 153 | color: color.withAlpha(220), 154 | borderRadius: BorderRadius.circular(10.0), 155 | ), 156 | child: Stack( 157 | children: [ 158 | Positioned( 159 | child: ClipRRect( 160 | borderRadius: BorderRadius.only( 161 | topLeft: Radius.circular(10.0), 162 | bottomLeft: Radius.circular(10.0), 163 | bottomRight: Radius.elliptical(90.0, 110.0), 164 | ), 165 | child: Container( 166 | width: MediaQuery.of(context).size.width / 2 - 20, 167 | decoration: BoxDecoration(color: color), 168 | ), 169 | ), 170 | ), 171 | Positioned( 172 | top: 20.0, 173 | left: 20.0, 174 | child: Container( 175 | child: Column( 176 | crossAxisAlignment: CrossAxisAlignment.start, 177 | children: [ 178 | Text( 179 | currencyName, 180 | style: TextStyle( 181 | fontFamily: Fonts.primaryFont, 182 | color: Colors.white.withOpacity(0.8), 183 | fontWeight: FontWeight.bold, 184 | fontSize: 24.0, 185 | ), 186 | ), 187 | Text( 188 | currencyCode, 189 | style: TextStyle( 190 | fontFamily: Fonts.primaryFont, 191 | color: Colors.white.withOpacity(0.8), 192 | fontSize: 19.0, 193 | ), 194 | ) 195 | ], 196 | ), 197 | ), 198 | ), 199 | Positioned( 200 | top: 20.0, 201 | right: 20.0, 202 | child: Text( 203 | amount, 204 | style: TextStyle( 205 | fontFamily: Fonts.primaryFont, 206 | color: Colors.white.withOpacity(0.8), 207 | fontWeight: FontWeight.bold, 208 | fontSize: 24.0, 209 | ), 210 | ), 211 | ), 212 | ], 213 | ), 214 | ); 215 | } 216 | } 217 | -------------------------------------------------------------------------------- /lib/views/trade.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/cupertino.dart'; 2 | import 'package:flutter/material.dart'; 3 | import 'package:line_icons/line_icons.dart'; 4 | import 'package:flutter_ui_toucan_pay_app/_routing/routes.dart' as routes; 5 | import 'package:flutter_ui_toucan_pay_app/utils.dart/utils.dart'; 6 | 7 | class TradeView extends StatelessWidget { 8 | @override 9 | Widget build(BuildContext context) { 10 | final appBar = AppBar( 11 | backgroundColor: Colors.transparent, 12 | elevation: 0.0, 13 | actions: [ 14 | Padding( 15 | padding: const EdgeInsets.only(right: 8.0), 16 | child: IconButton( 17 | icon: Icon(Icons.close, color: AppColors.primaryBlue), 18 | onPressed: () { 19 | Navigator.pop(context); 20 | }, 21 | ), 22 | ) 23 | ], 24 | ); 25 | 26 | return Scaffold( 27 | appBar: appBar, 28 | body: SingleChildScrollView( 29 | child: Column( 30 | children: [ 31 | Container( 32 | padding: EdgeInsets.only(left: 24.0), 33 | width: MediaQuery.of(context).size.width, 34 | child: Column( 35 | crossAxisAlignment: CrossAxisAlignment.start, 36 | children: [ 37 | Texts.headerTextTrade, 38 | SizedBox( 39 | height: 18.0, 40 | ), 41 | Texts.headerTextTrade2, 42 | SizedBox( 43 | height: 15.0, 44 | ), 45 | _buildMoneyCards('GBP', '0.00', true), 46 | SizedBox( 47 | height: 35.0, 48 | ), 49 | Row( 50 | children: [ 51 | Texts.headerTextTrade3, 52 | SizedBox( 53 | width: 10.0, 54 | ), 55 | Container( 56 | height: 20.0, 57 | width: 20.0, 58 | decoration: BoxDecoration( 59 | shape: BoxShape.circle, 60 | border: Border.all( 61 | color: Colors.grey.withOpacity(0.4), 62 | ), 63 | ), 64 | child: Center( 65 | child: Text( 66 | 'i', 67 | style: TextStyle( 68 | color: AppColors.primaryBlue, 69 | fontFamily: Fonts.primaryFont, 70 | fontWeight: FontWeight.bold, 71 | ), 72 | ), 73 | ), 74 | ) 75 | ], 76 | ), 77 | SizedBox( 78 | height: 15.0, 79 | ), 80 | _buildMoneyCards('USD', '0.00', false), 81 | SizedBox( 82 | height: 35.0, 83 | ), 84 | Texts.headerTextTrade4, 85 | SizedBox( 86 | height: 15.0, 87 | ), 88 | Container( 89 | height: 140.0, 90 | width: MediaQuery.of(context).size.width, 91 | child: ListView( 92 | padding: EdgeInsets.only(bottom: 20.0, left: 12.0), 93 | scrollDirection: Axis.horizontal, 94 | children: [ 95 | _buildUserCard(false, true, 'Add', null), 96 | _buildUserCard(true, false, 'Use QR', null), 97 | _buildUserCard(false, false, 'gregory', Images.man2), 98 | _buildUserCard(false, false, 'monique', Images.woman5), 99 | _buildUserCard(false, false, 'ambrose', Images.man3), 100 | _buildUserCard(false, false, 'philip', Images.man4), 101 | ], 102 | ), 103 | ), 104 | SizedBox( 105 | height: 35.0, 106 | ), 107 | ], 108 | ), 109 | ), 110 | Container( 111 | width: double.infinity, 112 | padding: EdgeInsets.only(left: 24, right: 24, top: 30.0), 113 | child: RaisedButton( 114 | shape: RoundedRectangleBorder( 115 | borderRadius: BorderRadius.circular(5.0)), 116 | padding: EdgeInsets.all(16.0), 117 | onPressed: () { 118 | Navigator.pushNamed(context, routes.manageViewRoute); 119 | }, 120 | color: AppColors.secondaryColor, 121 | child: Texts.makeOffer, 122 | ), 123 | ), 124 | Container( 125 | padding: EdgeInsets.only(top: 25.0), 126 | child: InkWell( 127 | onTap: () { 128 | Navigator.pop(context); 129 | }, 130 | child: Text( 131 | 'Cancel', 132 | style: TextStyle( 133 | fontFamily: Fonts.primaryFont, 134 | fontWeight: FontWeight.bold, 135 | color: Colors.grey.withOpacity(0.8) 136 | ), 137 | ), 138 | ), 139 | ) 140 | ], 141 | ), 142 | ), 143 | ); 144 | } 145 | 146 | Widget _buildMoneyCards(String type, String amount, bool isGrey) { 147 | var height = 50.0; 148 | var width = 180.0; 149 | var radius = 12.0; 150 | var diff = 10.0; 151 | 152 | return Container( 153 | // padding: EdgeInsets.only(bottom: 20.0), 154 | height: height, 155 | width: width, 156 | decoration: BoxDecoration( 157 | // borderRadius: BorderRadius.circular(radius), 158 | boxShadow: [ 159 | BoxShadow( 160 | color: Colors.white, 161 | ) 162 | ], 163 | ), 164 | child: Material( 165 | elevation: 10.0, 166 | shadowColor: Colors.white, 167 | borderRadius: BorderRadius.circular(radius), 168 | child: Row( 169 | children: [ 170 | Container( 171 | width: (width / 2) - diff, 172 | height: height, 173 | decoration: BoxDecoration( 174 | color: Colors.grey.withOpacity(0.2), 175 | borderRadius: BorderRadius.only( 176 | topLeft: Radius.circular(radius), 177 | bottomLeft: Radius.circular(radius), 178 | ), 179 | ), 180 | child: Column( 181 | mainAxisAlignment: MainAxisAlignment.center, 182 | children: [ 183 | Row( 184 | mainAxisAlignment: MainAxisAlignment.spaceEvenly, 185 | children: [ 186 | Text( 187 | type, 188 | style: TextStyle( 189 | fontFamily: Fonts.primaryFont, 190 | fontSize: 18.0, 191 | fontWeight: FontWeight.bold, 192 | color: isGrey 193 | ? Colors.grey.withOpacity(0.6) 194 | : AppColors.primaryBlue), 195 | ), 196 | isGrey 197 | ? Container() 198 | : Icon( 199 | LineIcons.arrow_circle_down, 200 | color: Colors.grey.withOpacity(0.6), 201 | ), 202 | ], 203 | ) 204 | ], 205 | ), 206 | ), 207 | Container( 208 | width: (width / 2) + diff, 209 | height: height, 210 | decoration: BoxDecoration( 211 | color: Color(0xFFFDFEFE), 212 | borderRadius: BorderRadius.only( 213 | topRight: Radius.circular(radius), 214 | bottomRight: Radius.circular(radius), 215 | ), 216 | ), 217 | child: Column( 218 | mainAxisAlignment: MainAxisAlignment.center, 219 | children: [ 220 | Text( 221 | amount, 222 | style: TextStyle( 223 | fontFamily: Fonts.primaryFont, 224 | fontSize: 18.0, 225 | fontWeight: FontWeight.bold, 226 | color: AppColors.primaryBlue), 227 | ) 228 | ], 229 | ), 230 | ) 231 | ], 232 | ), 233 | ), 234 | ); 235 | } 236 | 237 | Widget _buildUserCard(bool isQR, bool isBtn, String title, AssetImage img) { 238 | return Container( 239 | padding: EdgeInsets.only(right: 5.0), 240 | width: 100.0, 241 | child: Material( 242 | borderRadius: BorderRadius.circular(12.0), 243 | elevation: 10.0, 244 | shadowColor: Colors.white70, 245 | child: MaterialButton( 246 | onPressed: () {}, 247 | child: Column( 248 | mainAxisAlignment: MainAxisAlignment.spaceEvenly, 249 | children: [ 250 | (isQR || isBtn) 251 | ? Icon( 252 | isBtn ? Icons.add_circle : LineIcons.qrcode, 253 | color: isBtn ? AppColors.secondaryColor : Colors.black, 254 | size: isBtn ? 32.0 : 48.0, 255 | ) 256 | : Container( 257 | height: 50.0, 258 | width: 50.0, 259 | decoration: BoxDecoration( 260 | shape: BoxShape.circle, 261 | image: DecorationImage(image: img), 262 | ), 263 | ), 264 | Text( 265 | title, 266 | style: TextStyle( 267 | fontSize: 14.0, 268 | fontFamily: Fonts.primaryFont, 269 | fontWeight: FontWeight.bold, 270 | color: (isBtn || isQR) 271 | ? isBtn ? AppColors.secondaryColor : Colors.black 272 | : Colors.grey.withOpacity(0.6), 273 | ), 274 | ) 275 | ], 276 | ), 277 | ), 278 | ), 279 | ); 280 | } 281 | } 282 | -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- 1 | # Generated by pub 2 | # See https://www.dartlang.org/tools/pub/glossary#lockfile 3 | packages: 4 | async: 5 | dependency: transitive 6 | description: 7 | name: async 8 | url: "https://pub.dartlang.org" 9 | source: hosted 10 | version: "2.1.0" 11 | boolean_selector: 12 | dependency: transitive 13 | description: 14 | name: boolean_selector 15 | url: "https://pub.dartlang.org" 16 | source: hosted 17 | version: "1.0.4" 18 | charcode: 19 | dependency: transitive 20 | description: 21 | name: charcode 22 | url: "https://pub.dartlang.org" 23 | source: hosted 24 | version: "1.1.2" 25 | collection: 26 | dependency: transitive 27 | description: 28 | name: collection 29 | url: "https://pub.dartlang.org" 30 | source: hosted 31 | version: "1.14.11" 32 | cupertino_icons: 33 | dependency: "direct main" 34 | description: 35 | name: cupertino_icons 36 | url: "https://pub.dartlang.org" 37 | source: hosted 38 | version: "0.1.2" 39 | flutter: 40 | dependency: "direct main" 41 | description: flutter 42 | source: sdk 43 | version: "0.0.0" 44 | flutter_test: 45 | dependency: "direct dev" 46 | description: flutter 47 | source: sdk 48 | version: "0.0.0" 49 | font_awesome_flutter: 50 | dependency: "direct main" 51 | description: 52 | name: font_awesome_flutter 53 | url: "https://pub.dartlang.org" 54 | source: hosted 55 | version: "8.4.0" 56 | line_icons: 57 | dependency: "direct main" 58 | description: 59 | name: line_icons 60 | url: "https://pub.dartlang.org" 61 | source: hosted 62 | version: "0.2.0" 63 | matcher: 64 | dependency: transitive 65 | description: 66 | name: matcher 67 | url: "https://pub.dartlang.org" 68 | source: hosted 69 | version: "0.12.5" 70 | meta: 71 | dependency: transitive 72 | description: 73 | name: meta 74 | url: "https://pub.dartlang.org" 75 | source: hosted 76 | version: "1.1.6" 77 | path: 78 | dependency: transitive 79 | description: 80 | name: path 81 | url: "https://pub.dartlang.org" 82 | source: hosted 83 | version: "1.6.2" 84 | pedantic: 85 | dependency: transitive 86 | description: 87 | name: pedantic 88 | url: "https://pub.dartlang.org" 89 | source: hosted 90 | version: "1.5.0" 91 | quiver: 92 | dependency: transitive 93 | description: 94 | name: quiver 95 | url: "https://pub.dartlang.org" 96 | source: hosted 97 | version: "2.0.2" 98 | sky_engine: 99 | dependency: transitive 100 | description: flutter 101 | source: sdk 102 | version: "0.0.99" 103 | source_span: 104 | dependency: transitive 105 | description: 106 | name: source_span 107 | url: "https://pub.dartlang.org" 108 | source: hosted 109 | version: "1.5.5" 110 | stack_trace: 111 | dependency: transitive 112 | description: 113 | name: stack_trace 114 | url: "https://pub.dartlang.org" 115 | source: hosted 116 | version: "1.9.3" 117 | stream_channel: 118 | dependency: transitive 119 | description: 120 | name: stream_channel 121 | url: "https://pub.dartlang.org" 122 | source: hosted 123 | version: "2.0.0" 124 | string_scanner: 125 | dependency: transitive 126 | description: 127 | name: string_scanner 128 | url: "https://pub.dartlang.org" 129 | source: hosted 130 | version: "1.0.4" 131 | term_glyph: 132 | dependency: transitive 133 | description: 134 | name: term_glyph 135 | url: "https://pub.dartlang.org" 136 | source: hosted 137 | version: "1.1.0" 138 | test_api: 139 | dependency: transitive 140 | description: 141 | name: test_api 142 | url: "https://pub.dartlang.org" 143 | source: hosted 144 | version: "0.2.4" 145 | typed_data: 146 | dependency: transitive 147 | description: 148 | name: typed_data 149 | url: "https://pub.dartlang.org" 150 | source: hosted 151 | version: "1.1.6" 152 | vector_math: 153 | dependency: transitive 154 | description: 155 | name: vector_math 156 | url: "https://pub.dartlang.org" 157 | source: hosted 158 | version: "2.0.8" 159 | sdks: 160 | dart: ">=2.2.0 <3.0.0" 161 | -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: flutter_ui_toucan_pay_app 2 | description: A Flutter representation of ToucanPay App UI design. 3 | 4 | # The following defines the version and build number for your application. 5 | # A version number is three numbers separated by dots, like 1.2.43 6 | # followed by an optional build number separated by a +. 7 | # Both the version and the builder number may be overridden in flutter 8 | # build by specifying --build-name and --build-number, respectively. 9 | # In Android, build-name is used as versionName while build-number used as versionCode. 10 | # Read more about Android versioning at https://developer.android.com/studio/publish/versioning 11 | # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. 12 | # Read more about iOS versioning at 13 | # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html 14 | version: 1.0.0+1 15 | 16 | environment: 17 | sdk: ">=2.1.0 <3.0.0" 18 | 19 | dependencies: 20 | flutter: 21 | sdk: flutter 22 | font_awesome_flutter: ^8.4.0 23 | line_icons: ^0.2.0 24 | 25 | # The following adds the Cupertino Icons font to your application. 26 | # Use with the CupertinoIcons class for iOS style icons. 27 | cupertino_icons: ^0.1.2 28 | 29 | dev_dependencies: 30 | flutter_test: 31 | sdk: flutter 32 | 33 | 34 | # For information on the generic Dart part of this file, see the 35 | # following page: https://www.dartlang.org/tools/pub/pubspec 36 | 37 | # The following section is specific to Flutter. 38 | flutter: 39 | 40 | # The following line ensures that the Material Icons font is 41 | # included with your application, so that you can use the icons in 42 | # the material Icons class. 43 | uses-material-design: true 44 | 45 | assets: 46 | - assets/images/placeholder.jpg 47 | - assets/images/man1.jpg 48 | - assets/images/man2.jpg 49 | - assets/images/man3.jpg 50 | - assets/images/man4.jpg 51 | - assets/images/man5.jpg 52 | - assets/images/woman1.jpg 53 | - assets/images/woman2.jpg 54 | - assets/images/woman3.jpg 55 | - assets/images/woman4.jpg 56 | - assets/images/woman5.jpg 57 | 58 | fonts: 59 | - family: Quicksand 60 | fonts: 61 | - asset: assets/fonts/Quicksand-Regular.ttf 62 | -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/screenshots/2.png -------------------------------------------------------------------------------- /screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrade/flutter-ui-toucanpay-app/38f38a817e336f3ff37d11b6f36b385ddf411f4c/screenshots/3.png --------------------------------------------------------------------------------