├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ ├── ic_launch-playstore.png │ │ └── ic_launcher-playstore.png │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-playstore.png │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── nft_app_flutter │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ ├── values-v31 │ │ │ └── styles.xml │ │ │ └── values │ │ │ ├── ic_launcher_background.xml │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── fonts │ ├── futura_medium.ttf │ └── futura_normal.ttf └── images │ ├── eng.png │ ├── line.png │ └── monkey.png ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── 100.png │ │ ├── 102.png │ │ ├── 1024.png │ │ ├── 114.png │ │ ├── 120.png │ │ ├── 128.png │ │ ├── 144.png │ │ ├── 152.png │ │ ├── 16.png │ │ ├── 167.png │ │ ├── 172.png │ │ ├── 180.png │ │ ├── 196.png │ │ ├── 20.png │ │ ├── 216.png │ │ ├── 256.png │ │ ├── 29.png │ │ ├── 32.png │ │ ├── 40.png │ │ ├── 48.png │ │ ├── 50.png │ │ ├── 512.png │ │ ├── 55.png │ │ ├── 57.png │ │ ├── 58.png │ │ ├── 60.png │ │ ├── 64.png │ │ ├── 66.png │ │ ├── 72.png │ │ ├── 76.png │ │ ├── 80.png │ │ ├── 87.png │ │ ├── 88.png │ │ ├── 92.png │ │ └── Contents.json │ ├── LaunchBackground.imageset │ │ ├── Contents.json │ │ ├── background.png │ │ └── darkbackground.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── lib ├── api │ ├── api_base_helper.dart │ └── app_exceptions.dart ├── main.dart ├── model │ ├── TopNft.dart │ └── TrendingNft.dart ├── navigation │ └── routes.dart ├── presentation │ ├── home.dart │ ├── splash_screen.dart │ ├── welcome_screen.dart │ └── widgets │ │ ├── internet_not_connected.dart │ │ ├── search_bar.dart │ │ ├── sliver_search_bar.dart │ │ ├── top_pick.dart │ │ └── trending_items.dart ├── repository │ └── nft_repository.dart ├── state │ ├── bloc │ │ ├── api_state.dart │ │ ├── nft_bloc.dart │ │ └── nft_event.dart │ └── cubits │ │ ├── splash_cubit.dart │ │ └── splash_state.dart ├── theme │ └── app_theme.dart └── utils │ └── constants.dart ├── pubspec.lock ├── pubspec.yaml └── test └── widget_test.dart /.gitignore: -------------------------------------------------------------------------------- 1 | # Miscellaneous 2 | *.class 3 | *.log 4 | *.pyc 5 | *.swp 6 | .DS_Store 7 | .atom/ 8 | .buildlog/ 9 | .history 10 | .svn/ 11 | migrate_working_dir/ 12 | 13 | # IntelliJ related 14 | *.iml 15 | *.ipr 16 | *.iws 17 | .idea/ 18 | 19 | # The .vscode folder contains launch configuration and tasks you configure in 20 | # VS Code which you may wish to be included in version control, so this line 21 | # is commented out by default. 22 | #.vscode/ 23 | 24 | # Flutter/Dart/Pub related 25 | **/doc/api/ 26 | **/ios/Flutter/.last_build_id 27 | .dart_tool/ 28 | .flutter-plugins 29 | .flutter-plugins-dependencies 30 | .packages 31 | .pub-cache/ 32 | .pub/ 33 | /build/ 34 | 35 | # Web related 36 | lib/generated_plugin_registrant.dart 37 | 38 | # Symbolication related 39 | app.*.symbols 40 | 41 | # Obfuscation related 42 | app.*.map.json 43 | 44 | # Android Studio will place build artifacts here 45 | /android/app/debug 46 | /android/app/profile 47 | /android/app/release 48 | -------------------------------------------------------------------------------- /.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. 5 | 6 | version: 7 | revision: f1875d570e39de09040c8f79aa13cc56baab8db1 8 | channel: stable 9 | 10 | project_type: app 11 | 12 | # Tracks metadata for the flutter migrate command 13 | migration: 14 | platforms: 15 | - platform: root 16 | create_revision: f1875d570e39de09040c8f79aa13cc56baab8db1 17 | base_revision: f1875d570e39de09040c8f79aa13cc56baab8db1 18 | - platform: android 19 | create_revision: f1875d570e39de09040c8f79aa13cc56baab8db1 20 | base_revision: f1875d570e39de09040c8f79aa13cc56baab8db1 21 | - platform: ios 22 | create_revision: f1875d570e39de09040c8f79aa13cc56baab8db1 23 | base_revision: f1875d570e39de09040c8f79aa13cc56baab8db1 24 | 25 | # User provided section 26 | 27 | # List of Local paths (relative to this file) that should be 28 | # ignored by the migrate tool. 29 | # 30 | # Files that are not part of the templates will be ignored by default. 31 | unmanaged_files: 32 | - 'lib/main.dart' 33 | - 'ios/Runner.xcodeproj/project.pbxproj' 34 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # NFT App Flutter 2 | 3 |

4 | 5 | 6 |

7 | 8 | 9 | Check thesame app I built with Kotlin below: 10 | 11 | https://github.com/ibrajix/NftApp 12 | 13 | ## Features 14 | 15 | - Flutter (Dart) 16 | - State Management (Bloc & Cubit) 17 | - Networking (okHttp) 18 | - Api Data (MockApi) 19 | - CustomScrollView, SliverList, ListView, ListViewBuilder 20 | - Architecture: Model -> Repository -> State Management (Bloc) -> Presentation 21 | - Proper error and exception handling 22 | - Navigation (GoRouter) 23 | - Splash Screen With Some Cool Animation 24 | 25 | ## Download (APK) 26 | 27 | Click to download 28 | -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- 1 | # This file configures the analyzer, which statically analyzes Dart code to 2 | # check for errors, warnings, and lints. 3 | # 4 | # The issues identified by the analyzer are surfaced in the UI of Dart-enabled 5 | # IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be 6 | # invoked from the command line by running `flutter analyze`. 7 | 8 | # The following line activates a set of recommended lints for Flutter apps, 9 | # packages, and plugins designed to encourage good coding practices. 10 | include: package:flutter_lints/flutter.yaml 11 | 12 | linter: 13 | # The lint rules applied to this project can be customized in the 14 | # section below to disable rules from the `package:flutter_lints/flutter.yaml` 15 | # included above or to enable additional rules. A list of all available lints 16 | # and their documentation is published at 17 | # https://dart-lang.github.io/linter/lints/index.html. 18 | # 19 | # Instead of disabling a lint rule for the entire project in the 20 | # section below, it can also be suppressed for a single line of code 21 | # or a specific dart file by using the `// ignore: name_of_lint` and 22 | # `// ignore_for_file: name_of_lint` syntax on the line or in the file 23 | # producing the lint. 24 | rules: 25 | # avoid_print: false # Uncomment to disable the `avoid_print` rule 26 | # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule 27 | 28 | # Additional information about this file can be found at 29 | # https://dart.dev/guides/language/analysis-options 30 | -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | 9 | # Remember to never publicly share your keystore. 10 | # See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app 11 | key.properties 12 | **/*.keystore 13 | **/*.jks 14 | -------------------------------------------------------------------------------- /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 plugin: 'kotlin-android' 26 | apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" 27 | 28 | android { 29 | compileSdkVersion flutter.compileSdkVersion 30 | ndkVersion flutter.ndkVersion 31 | 32 | compileOptions { 33 | sourceCompatibility JavaVersion.VERSION_1_8 34 | targetCompatibility JavaVersion.VERSION_1_8 35 | } 36 | 37 | kotlinOptions { 38 | jvmTarget = '1.8' 39 | } 40 | 41 | sourceSets { 42 | main.java.srcDirs += 'src/main/kotlin' 43 | } 44 | 45 | defaultConfig { 46 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). 47 | applicationId "com.example.nft_app_flutter" 48 | // You can update the following values to match your application needs. 49 | // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration. 50 | minSdkVersion flutter.minSdkVersion 51 | targetSdkVersion flutter.targetSdkVersion 52 | versionCode flutterVersionCode.toInteger() 53 | versionName flutterVersionName 54 | } 55 | 56 | buildTypes { 57 | release { 58 | // TODO: Add your own signing config for the release build. 59 | // Signing with the debug keys for now, so `flutter run --release` works. 60 | signingConfig signingConfigs.debug 61 | } 62 | } 63 | } 64 | 65 | flutter { 66 | source '../..' 67 | } 68 | 69 | dependencies { 70 | implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" 71 | } 72 | -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/app/src/debug/ic_launch-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/android/app/src/debug/ic_launch-playstore.png -------------------------------------------------------------------------------- /android/app/src/debug/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/android/app/src/debug/ic_launcher-playstore.png -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 8 | 16 | 20 | 24 | 25 | 26 | 27 | 28 | 29 | 31 | 34 | 35 | -------------------------------------------------------------------------------- /android/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/android/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/nft_app_flutter/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.example.nft_app_flutter 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | 5 | class MainActivity: FlutterActivity() { 6 | } 7 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 17 | 20 | 21 | -------------------------------------------------------------------------------- /android/app/src/main/res/values-v31/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 15 | 18 | 19 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #023047 4 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 17 | 20 | 21 | -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | ext.kotlin_version = '1.6.10' 3 | repositories { 4 | google() 5 | mavenCentral() 6 | } 7 | 8 | dependencies { 9 | classpath 'com.android.tools.build:gradle:7.1.2' 10 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" 11 | } 12 | } 13 | 14 | allprojects { 15 | repositories { 16 | google() 17 | mavenCentral() 18 | } 19 | } 20 | 21 | rootProject.buildDir = '../build' 22 | subprojects { 23 | project.buildDir = "${rootProject.buildDir}/${project.name}" 24 | } 25 | subprojects { 26 | project.evaluationDependsOn(':app') 27 | } 28 | 29 | task clean(type: Delete) { 30 | delete rootProject.buildDir 31 | } 32 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.useAndroidX=true 3 | android.enableJetifier=true 4 | -------------------------------------------------------------------------------- /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-7.4-all.zip 7 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | 3 | def localPropertiesFile = new File(rootProject.projectDir, "local.properties") 4 | def properties = new Properties() 5 | 6 | assert localPropertiesFile.exists() 7 | localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) } 8 | 9 | def flutterSdkPath = properties.getProperty("flutter.sdk") 10 | assert flutterSdkPath != null, "flutter.sdk not set in local.properties" 11 | apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle" 12 | -------------------------------------------------------------------------------- /assets/fonts/futura_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/assets/fonts/futura_medium.ttf -------------------------------------------------------------------------------- /assets/fonts/futura_normal.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/assets/fonts/futura_normal.ttf -------------------------------------------------------------------------------- /assets/images/eng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/assets/images/eng.png -------------------------------------------------------------------------------- /assets/images/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/assets/images/line.png -------------------------------------------------------------------------------- /assets/images/monkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/assets/images/monkey.png -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- 1 | **/dgph 2 | *.mode1v3 3 | *.mode2v3 4 | *.moved-aside 5 | *.pbxuser 6 | *.perspectivev3 7 | **/*sync/ 8 | .sconsign.dblite 9 | .tags* 10 | **/.vagrant/ 11 | **/DerivedData/ 12 | Icon? 13 | **/Pods/ 14 | **/.symlinks/ 15 | profile 16 | xcuserdata 17 | **/.generated/ 18 | Flutter/App.framework 19 | Flutter/Flutter.framework 20 | Flutter/Flutter.podspec 21 | Flutter/Generated.xcconfig 22 | Flutter/ephemeral/ 23 | Flutter/app.flx 24 | Flutter/app.zip 25 | Flutter/flutter_assets/ 26 | Flutter/flutter_export_environment.sh 27 | ServiceDefinitions.json 28 | Runner/GeneratedPluginRegistrant.* 29 | 30 | # Exceptions to above rules. 31 | !default.mode1v3 32 | !default.mode2v3 33 | !default.pbxuser 34 | !default.perspectivev3 35 | -------------------------------------------------------------------------------- /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 | 9.0 25 | 26 | 27 | -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | # CocoaPods analytics sends network stats synchronously affecting flutter build latency. 5 | ENV['COCOAPODS_DISABLE_STATS'] = 'true' 6 | 7 | project 'Runner', { 8 | 'Debug' => :debug, 9 | 'Profile' => :release, 10 | 'Release' => :release, 11 | } 12 | 13 | def flutter_root 14 | generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__) 15 | unless File.exist?(generated_xcode_build_settings_path) 16 | raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first" 17 | end 18 | 19 | File.foreach(generated_xcode_build_settings_path) do |line| 20 | matches = line.match(/FLUTTER_ROOT\=(.*)/) 21 | return matches[1].strip if matches 22 | end 23 | raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get" 24 | end 25 | 26 | require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) 27 | 28 | flutter_ios_podfile_setup 29 | 30 | target 'Runner' do 31 | use_frameworks! 32 | use_modular_headers! 33 | 34 | flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) 35 | end 36 | 37 | post_install do |installer| 38 | installer.pods_project.targets.each do |target| 39 | flutter_additional_ios_build_settings(target) 40 | end 41 | end 42 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 50; 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 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; 13 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; 14 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; 15 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; 16 | /* End PBXBuildFile section */ 17 | 18 | /* Begin PBXCopyFilesBuildPhase section */ 19 | 9705A1C41CF9048500538489 /* Embed Frameworks */ = { 20 | isa = PBXCopyFilesBuildPhase; 21 | buildActionMask = 2147483647; 22 | dstPath = ""; 23 | dstSubfolderSpec = 10; 24 | files = ( 25 | ); 26 | name = "Embed Frameworks"; 27 | runOnlyForDeploymentPostprocessing = 0; 28 | }; 29 | /* End PBXCopyFilesBuildPhase section */ 30 | 31 | /* Begin PBXFileReference section */ 32 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; 33 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; 34 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; 35 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; 36 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 37 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; 38 | 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; 39 | 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; 40 | 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; 41 | 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 42 | 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 43 | 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 44 | 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 45 | /* End PBXFileReference section */ 46 | 47 | /* Begin PBXFrameworksBuildPhase section */ 48 | 97C146EB1CF9000F007C117D /* Frameworks */ = { 49 | isa = PBXFrameworksBuildPhase; 50 | buildActionMask = 2147483647; 51 | files = ( 52 | ); 53 | runOnlyForDeploymentPostprocessing = 0; 54 | }; 55 | /* End PBXFrameworksBuildPhase section */ 56 | 57 | /* Begin PBXGroup section */ 58 | 9740EEB11CF90186004384FC /* Flutter */ = { 59 | isa = PBXGroup; 60 | children = ( 61 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, 62 | 9740EEB21CF90195004384FC /* Debug.xcconfig */, 63 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, 64 | 9740EEB31CF90195004384FC /* Generated.xcconfig */, 65 | ); 66 | name = Flutter; 67 | sourceTree = ""; 68 | }; 69 | 97C146E51CF9000F007C117D = { 70 | isa = PBXGroup; 71 | children = ( 72 | 9740EEB11CF90186004384FC /* Flutter */, 73 | 97C146F01CF9000F007C117D /* Runner */, 74 | 97C146EF1CF9000F007C117D /* Products */, 75 | ); 76 | sourceTree = ""; 77 | }; 78 | 97C146EF1CF9000F007C117D /* Products */ = { 79 | isa = PBXGroup; 80 | children = ( 81 | 97C146EE1CF9000F007C117D /* Runner.app */, 82 | ); 83 | name = Products; 84 | sourceTree = ""; 85 | }; 86 | 97C146F01CF9000F007C117D /* Runner */ = { 87 | isa = PBXGroup; 88 | children = ( 89 | 97C146FA1CF9000F007C117D /* Main.storyboard */, 90 | 97C146FD1CF9000F007C117D /* Assets.xcassets */, 91 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, 92 | 97C147021CF9000F007C117D /* Info.plist */, 93 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, 94 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, 95 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, 96 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, 97 | ); 98 | path = Runner; 99 | sourceTree = ""; 100 | }; 101 | /* End PBXGroup section */ 102 | 103 | /* Begin PBXNativeTarget section */ 104 | 97C146ED1CF9000F007C117D /* Runner */ = { 105 | isa = PBXNativeTarget; 106 | buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; 107 | buildPhases = ( 108 | 9740EEB61CF901F6004384FC /* Run Script */, 109 | 97C146EA1CF9000F007C117D /* Sources */, 110 | 97C146EB1CF9000F007C117D /* Frameworks */, 111 | 97C146EC1CF9000F007C117D /* Resources */, 112 | 9705A1C41CF9048500538489 /* Embed Frameworks */, 113 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */, 114 | ); 115 | buildRules = ( 116 | ); 117 | dependencies = ( 118 | ); 119 | name = Runner; 120 | productName = Runner; 121 | productReference = 97C146EE1CF9000F007C117D /* Runner.app */; 122 | productType = "com.apple.product-type.application"; 123 | }; 124 | /* End PBXNativeTarget section */ 125 | 126 | /* Begin PBXProject section */ 127 | 97C146E61CF9000F007C117D /* Project object */ = { 128 | isa = PBXProject; 129 | attributes = { 130 | LastUpgradeCheck = 1300; 131 | ORGANIZATIONNAME = ""; 132 | TargetAttributes = { 133 | 97C146ED1CF9000F007C117D = { 134 | CreatedOnToolsVersion = 7.3.1; 135 | LastSwiftMigration = 1100; 136 | }; 137 | }; 138 | }; 139 | buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; 140 | compatibilityVersion = "Xcode 9.3"; 141 | developmentRegion = en; 142 | hasScannedForEncodings = 0; 143 | knownRegions = ( 144 | en, 145 | Base, 146 | ); 147 | mainGroup = 97C146E51CF9000F007C117D; 148 | productRefGroup = 97C146EF1CF9000F007C117D /* Products */; 149 | projectDirPath = ""; 150 | projectRoot = ""; 151 | targets = ( 152 | 97C146ED1CF9000F007C117D /* Runner */, 153 | ); 154 | }; 155 | /* End PBXProject section */ 156 | 157 | /* Begin PBXResourcesBuildPhase section */ 158 | 97C146EC1CF9000F007C117D /* Resources */ = { 159 | isa = PBXResourcesBuildPhase; 160 | buildActionMask = 2147483647; 161 | files = ( 162 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, 163 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, 164 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, 165 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, 166 | ); 167 | runOnlyForDeploymentPostprocessing = 0; 168 | }; 169 | /* End PBXResourcesBuildPhase section */ 170 | 171 | /* Begin PBXShellScriptBuildPhase section */ 172 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { 173 | isa = PBXShellScriptBuildPhase; 174 | buildActionMask = 2147483647; 175 | files = ( 176 | ); 177 | inputPaths = ( 178 | ); 179 | name = "Thin Binary"; 180 | outputPaths = ( 181 | ); 182 | runOnlyForDeploymentPostprocessing = 0; 183 | shellPath = /bin/sh; 184 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; 185 | }; 186 | 9740EEB61CF901F6004384FC /* Run Script */ = { 187 | isa = PBXShellScriptBuildPhase; 188 | buildActionMask = 2147483647; 189 | files = ( 190 | ); 191 | inputPaths = ( 192 | ); 193 | name = "Run Script"; 194 | outputPaths = ( 195 | ); 196 | runOnlyForDeploymentPostprocessing = 0; 197 | shellPath = /bin/sh; 198 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; 199 | }; 200 | /* End PBXShellScriptBuildPhase section */ 201 | 202 | /* Begin PBXSourcesBuildPhase section */ 203 | 97C146EA1CF9000F007C117D /* Sources */ = { 204 | isa = PBXSourcesBuildPhase; 205 | buildActionMask = 2147483647; 206 | files = ( 207 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, 208 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, 209 | ); 210 | runOnlyForDeploymentPostprocessing = 0; 211 | }; 212 | /* End PBXSourcesBuildPhase section */ 213 | 214 | /* Begin PBXVariantGroup section */ 215 | 97C146FA1CF9000F007C117D /* Main.storyboard */ = { 216 | isa = PBXVariantGroup; 217 | children = ( 218 | 97C146FB1CF9000F007C117D /* Base */, 219 | ); 220 | name = Main.storyboard; 221 | sourceTree = ""; 222 | }; 223 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { 224 | isa = PBXVariantGroup; 225 | children = ( 226 | 97C147001CF9000F007C117D /* Base */, 227 | ); 228 | name = LaunchScreen.storyboard; 229 | sourceTree = ""; 230 | }; 231 | /* End PBXVariantGroup section */ 232 | 233 | /* Begin XCBuildConfiguration section */ 234 | 249021D3217E4FDB00AE95B9 /* Profile */ = { 235 | isa = XCBuildConfiguration; 236 | buildSettings = { 237 | ALWAYS_SEARCH_USER_PATHS = NO; 238 | CLANG_ANALYZER_NONNULL = YES; 239 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 240 | CLANG_CXX_LIBRARY = "libc++"; 241 | CLANG_ENABLE_MODULES = YES; 242 | CLANG_ENABLE_OBJC_ARC = YES; 243 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 244 | CLANG_WARN_BOOL_CONVERSION = YES; 245 | CLANG_WARN_COMMA = YES; 246 | CLANG_WARN_CONSTANT_CONVERSION = YES; 247 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 248 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 249 | CLANG_WARN_EMPTY_BODY = YES; 250 | CLANG_WARN_ENUM_CONVERSION = YES; 251 | CLANG_WARN_INFINITE_RECURSION = YES; 252 | CLANG_WARN_INT_CONVERSION = YES; 253 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 254 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 255 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 256 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 257 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 258 | CLANG_WARN_STRICT_PROTOTYPES = YES; 259 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 260 | CLANG_WARN_UNREACHABLE_CODE = YES; 261 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 262 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 263 | COPY_PHASE_STRIP = NO; 264 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 265 | ENABLE_NS_ASSERTIONS = NO; 266 | ENABLE_STRICT_OBJC_MSGSEND = YES; 267 | GCC_C_LANGUAGE_STANDARD = gnu99; 268 | GCC_NO_COMMON_BLOCKS = YES; 269 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 270 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 271 | GCC_WARN_UNDECLARED_SELECTOR = YES; 272 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 273 | GCC_WARN_UNUSED_FUNCTION = YES; 274 | GCC_WARN_UNUSED_VARIABLE = YES; 275 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 276 | MTL_ENABLE_DEBUG_INFO = NO; 277 | SDKROOT = iphoneos; 278 | SUPPORTED_PLATFORMS = iphoneos; 279 | TARGETED_DEVICE_FAMILY = "1,2"; 280 | VALIDATE_PRODUCT = YES; 281 | }; 282 | name = Profile; 283 | }; 284 | 249021D4217E4FDB00AE95B9 /* Profile */ = { 285 | isa = XCBuildConfiguration; 286 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 287 | buildSettings = { 288 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 289 | CLANG_ENABLE_MODULES = YES; 290 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 291 | ENABLE_BITCODE = NO; 292 | INFOPLIST_FILE = Runner/Info.plist; 293 | LD_RUNPATH_SEARCH_PATHS = ( 294 | "$(inherited)", 295 | "@executable_path/Frameworks", 296 | ); 297 | PRODUCT_BUNDLE_IDENTIFIER = com.example.nftAppFlutter; 298 | PRODUCT_NAME = "$(TARGET_NAME)"; 299 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 300 | SWIFT_VERSION = 5.0; 301 | VERSIONING_SYSTEM = "apple-generic"; 302 | }; 303 | name = Profile; 304 | }; 305 | 97C147031CF9000F007C117D /* Debug */ = { 306 | isa = XCBuildConfiguration; 307 | buildSettings = { 308 | ALWAYS_SEARCH_USER_PATHS = NO; 309 | CLANG_ANALYZER_NONNULL = YES; 310 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 311 | CLANG_CXX_LIBRARY = "libc++"; 312 | CLANG_ENABLE_MODULES = YES; 313 | CLANG_ENABLE_OBJC_ARC = YES; 314 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 315 | CLANG_WARN_BOOL_CONVERSION = YES; 316 | CLANG_WARN_COMMA = YES; 317 | CLANG_WARN_CONSTANT_CONVERSION = YES; 318 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 319 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 320 | CLANG_WARN_EMPTY_BODY = YES; 321 | CLANG_WARN_ENUM_CONVERSION = YES; 322 | CLANG_WARN_INFINITE_RECURSION = YES; 323 | CLANG_WARN_INT_CONVERSION = YES; 324 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 325 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 326 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 327 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 328 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 329 | CLANG_WARN_STRICT_PROTOTYPES = YES; 330 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 331 | CLANG_WARN_UNREACHABLE_CODE = YES; 332 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 333 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 334 | COPY_PHASE_STRIP = NO; 335 | DEBUG_INFORMATION_FORMAT = dwarf; 336 | ENABLE_STRICT_OBJC_MSGSEND = YES; 337 | ENABLE_TESTABILITY = YES; 338 | GCC_C_LANGUAGE_STANDARD = gnu99; 339 | GCC_DYNAMIC_NO_PIC = NO; 340 | GCC_NO_COMMON_BLOCKS = YES; 341 | GCC_OPTIMIZATION_LEVEL = 0; 342 | GCC_PREPROCESSOR_DEFINITIONS = ( 343 | "DEBUG=1", 344 | "$(inherited)", 345 | ); 346 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 347 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 348 | GCC_WARN_UNDECLARED_SELECTOR = YES; 349 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 350 | GCC_WARN_UNUSED_FUNCTION = YES; 351 | GCC_WARN_UNUSED_VARIABLE = YES; 352 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 353 | MTL_ENABLE_DEBUG_INFO = YES; 354 | ONLY_ACTIVE_ARCH = YES; 355 | SDKROOT = iphoneos; 356 | TARGETED_DEVICE_FAMILY = "1,2"; 357 | }; 358 | name = Debug; 359 | }; 360 | 97C147041CF9000F007C117D /* Release */ = { 361 | isa = XCBuildConfiguration; 362 | buildSettings = { 363 | ALWAYS_SEARCH_USER_PATHS = NO; 364 | CLANG_ANALYZER_NONNULL = YES; 365 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 366 | CLANG_CXX_LIBRARY = "libc++"; 367 | CLANG_ENABLE_MODULES = YES; 368 | CLANG_ENABLE_OBJC_ARC = YES; 369 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 370 | CLANG_WARN_BOOL_CONVERSION = YES; 371 | CLANG_WARN_COMMA = YES; 372 | CLANG_WARN_CONSTANT_CONVERSION = YES; 373 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 374 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 375 | CLANG_WARN_EMPTY_BODY = YES; 376 | CLANG_WARN_ENUM_CONVERSION = YES; 377 | CLANG_WARN_INFINITE_RECURSION = YES; 378 | CLANG_WARN_INT_CONVERSION = YES; 379 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 380 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 381 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 382 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 383 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 384 | CLANG_WARN_STRICT_PROTOTYPES = YES; 385 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 386 | CLANG_WARN_UNREACHABLE_CODE = YES; 387 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 388 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 389 | COPY_PHASE_STRIP = NO; 390 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 391 | ENABLE_NS_ASSERTIONS = NO; 392 | ENABLE_STRICT_OBJC_MSGSEND = YES; 393 | GCC_C_LANGUAGE_STANDARD = gnu99; 394 | GCC_NO_COMMON_BLOCKS = YES; 395 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 396 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 397 | GCC_WARN_UNDECLARED_SELECTOR = YES; 398 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 399 | GCC_WARN_UNUSED_FUNCTION = YES; 400 | GCC_WARN_UNUSED_VARIABLE = YES; 401 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 402 | MTL_ENABLE_DEBUG_INFO = NO; 403 | SDKROOT = iphoneos; 404 | SUPPORTED_PLATFORMS = iphoneos; 405 | SWIFT_COMPILATION_MODE = wholemodule; 406 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 407 | TARGETED_DEVICE_FAMILY = "1,2"; 408 | VALIDATE_PRODUCT = YES; 409 | }; 410 | name = Release; 411 | }; 412 | 97C147061CF9000F007C117D /* Debug */ = { 413 | isa = XCBuildConfiguration; 414 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 415 | buildSettings = { 416 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 417 | CLANG_ENABLE_MODULES = YES; 418 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 419 | ENABLE_BITCODE = NO; 420 | INFOPLIST_FILE = Runner/Info.plist; 421 | LD_RUNPATH_SEARCH_PATHS = ( 422 | "$(inherited)", 423 | "@executable_path/Frameworks", 424 | ); 425 | PRODUCT_BUNDLE_IDENTIFIER = com.example.nftAppFlutter; 426 | PRODUCT_NAME = "$(TARGET_NAME)"; 427 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 428 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 429 | SWIFT_VERSION = 5.0; 430 | VERSIONING_SYSTEM = "apple-generic"; 431 | }; 432 | name = Debug; 433 | }; 434 | 97C147071CF9000F007C117D /* Release */ = { 435 | isa = XCBuildConfiguration; 436 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 437 | buildSettings = { 438 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 439 | CLANG_ENABLE_MODULES = YES; 440 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 441 | ENABLE_BITCODE = NO; 442 | INFOPLIST_FILE = Runner/Info.plist; 443 | LD_RUNPATH_SEARCH_PATHS = ( 444 | "$(inherited)", 445 | "@executable_path/Frameworks", 446 | ); 447 | PRODUCT_BUNDLE_IDENTIFIER = com.example.nftAppFlutter; 448 | PRODUCT_NAME = "$(TARGET_NAME)"; 449 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 450 | SWIFT_VERSION = 5.0; 451 | VERSIONING_SYSTEM = "apple-generic"; 452 | }; 453 | name = Release; 454 | }; 455 | /* End XCBuildConfiguration section */ 456 | 457 | /* Begin XCConfigurationList section */ 458 | 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { 459 | isa = XCConfigurationList; 460 | buildConfigurations = ( 461 | 97C147031CF9000F007C117D /* Debug */, 462 | 97C147041CF9000F007C117D /* Release */, 463 | 249021D3217E4FDB00AE95B9 /* Profile */, 464 | ); 465 | defaultConfigurationIsVisible = 0; 466 | defaultConfigurationName = Release; 467 | }; 468 | 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { 469 | isa = XCConfigurationList; 470 | buildConfigurations = ( 471 | 97C147061CF9000F007C117D /* Debug */, 472 | 97C147071CF9000F007C117D /* Release */, 473 | 249021D4217E4FDB00AE95B9 /* Profile */, 474 | ); 475 | defaultConfigurationIsVisible = 0; 476 | defaultConfigurationName = Release; 477 | }; 478 | /* End XCConfigurationList section */ 479 | }; 480 | rootObject = 97C146E61CF9000F007C117D /* Project object */; 481 | } 482 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 37 | 38 | 39 | 40 | 41 | 42 | 52 | 54 | 60 | 61 | 62 | 63 | 69 | 71 | 77 | 78 | 79 | 80 | 82 | 83 | 86 | 87 | 88 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Flutter 3 | 4 | @UIApplicationMain 5 | @objc class AppDelegate: FlutterAppDelegate { 6 | override func application( 7 | _ application: UIApplication, 8 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? 9 | ) -> Bool { 10 | GeneratedPluginRegistrant.register(with: self) 11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/102.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/144.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/172.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/196.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/216.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/48.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/50.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/55.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/64.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/66.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/88.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/92.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/AppIcon.appiconset/92.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | {"images":[{"size":"60x60","expected-size":"180","filename":"180.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"iphone","scale":"3x"},{"size":"40x40","expected-size":"80","filename":"80.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"iphone","scale":"2x"},{"size":"40x40","expected-size":"120","filename":"120.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"iphone","scale":"3x"},{"size":"60x60","expected-size":"120","filename":"120.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"iphone","scale":"2x"},{"size":"57x57","expected-size":"57","filename":"57.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"iphone","scale":"1x"},{"size":"29x29","expected-size":"58","filename":"58.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"iphone","scale":"2x"},{"size":"29x29","expected-size":"29","filename":"29.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"iphone","scale":"1x"},{"size":"29x29","expected-size":"87","filename":"87.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"iphone","scale":"3x"},{"size":"57x57","expected-size":"114","filename":"114.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"iphone","scale":"2x"},{"size":"20x20","expected-size":"40","filename":"40.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"iphone","scale":"2x"},{"size":"20x20","expected-size":"60","filename":"60.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"iphone","scale":"3x"},{"size":"1024x1024","filename":"1024.png","expected-size":"1024","idiom":"ios-marketing","folder":"Assets.xcassets/AppIcon.appiconset/","scale":"1x"},{"size":"40x40","expected-size":"80","filename":"80.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"2x"},{"size":"72x72","expected-size":"72","filename":"72.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"1x"},{"size":"76x76","expected-size":"152","filename":"152.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"2x"},{"size":"50x50","expected-size":"100","filename":"100.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"2x"},{"size":"29x29","expected-size":"58","filename":"58.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"2x"},{"size":"76x76","expected-size":"76","filename":"76.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"1x"},{"size":"29x29","expected-size":"29","filename":"29.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"1x"},{"size":"50x50","expected-size":"50","filename":"50.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"1x"},{"size":"72x72","expected-size":"144","filename":"144.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"2x"},{"size":"40x40","expected-size":"40","filename":"40.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"1x"},{"size":"83.5x83.5","expected-size":"167","filename":"167.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"2x"},{"size":"20x20","expected-size":"20","filename":"20.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"1x"},{"size":"20x20","expected-size":"40","filename":"40.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"2x"},{"idiom":"watch","filename":"172.png","folder":"Assets.xcassets/AppIcon.appiconset/","subtype":"38mm","scale":"2x","size":"86x86","expected-size":"172","role":"quickLook"},{"idiom":"watch","filename":"80.png","folder":"Assets.xcassets/AppIcon.appiconset/","subtype":"38mm","scale":"2x","size":"40x40","expected-size":"80","role":"appLauncher"},{"idiom":"watch","filename":"88.png","folder":"Assets.xcassets/AppIcon.appiconset/","subtype":"40mm","scale":"2x","size":"44x44","expected-size":"88","role":"appLauncher"},{"idiom":"watch","filename":"102.png","folder":"Assets.xcassets/AppIcon.appiconset/","subtype":"41mm","scale":"2x","size":"45x45","expected-size":"102","role":"appLauncher"},{"idiom":"watch","filename":"92.png","folder":"Assets.xcassets/AppIcon.appiconset/","subtype":"41mm","scale":"2x","size":"46x46","expected-size":"92","role":"appLauncher"},{"idiom":"watch","filename":"100.png","folder":"Assets.xcassets/AppIcon.appiconset/","subtype":"44mm","scale":"2x","size":"50x50","expected-size":"100","role":"appLauncher"},{"idiom":"watch","filename":"196.png","folder":"Assets.xcassets/AppIcon.appiconset/","subtype":"42mm","scale":"2x","size":"98x98","expected-size":"196","role":"quickLook"},{"idiom":"watch","filename":"216.png","folder":"Assets.xcassets/AppIcon.appiconset/","subtype":"44mm","scale":"2x","size":"108x108","expected-size":"216","role":"quickLook"},{"idiom":"watch","filename":"48.png","folder":"Assets.xcassets/AppIcon.appiconset/","subtype":"38mm","scale":"2x","size":"24x24","expected-size":"48","role":"notificationCenter"},{"idiom":"watch","filename":"55.png","folder":"Assets.xcassets/AppIcon.appiconset/","subtype":"42mm","scale":"2x","size":"27.5x27.5","expected-size":"55","role":"notificationCenter"},{"idiom":"watch","filename":"66.png","folder":"Assets.xcassets/AppIcon.appiconset/","subtype":"45mm","scale":"2x","size":"33x33","expected-size":"66","role":"notificationCenter"},{"size":"29x29","expected-size":"87","filename":"87.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"watch","role":"companionSettings","scale":"3x"},{"size":"29x29","expected-size":"58","filename":"58.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"watch","role":"companionSettings","scale":"2x"},{"size":"1024x1024","expected-size":"1024","filename":"1024.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"watch-marketing","scale":"1x"},{"size":"128x128","expected-size":"128","filename":"128.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"mac","scale":"1x"},{"size":"256x256","expected-size":"256","filename":"256.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"mac","scale":"1x"},{"size":"128x128","expected-size":"256","filename":"256.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"mac","scale":"2x"},{"size":"256x256","expected-size":"512","filename":"512.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"mac","scale":"2x"},{"size":"32x32","expected-size":"32","filename":"32.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"mac","scale":"1x"},{"size":"512x512","expected-size":"512","filename":"512.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"mac","scale":"1x"},{"size":"16x16","expected-size":"16","filename":"16.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"mac","scale":"1x"},{"size":"16x16","expected-size":"32","filename":"32.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"mac","scale":"2x"},{"size":"32x32","expected-size":"64","filename":"64.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"mac","scale":"2x"},{"size":"512x512","expected-size":"1024","filename":"1024.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"mac","scale":"2x"}]} -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchBackground.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "background.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "appearances" : [ 10 | { 11 | "appearance" : "luminosity", 12 | "value" : "dark" 13 | } 14 | ], 15 | "filename" : "darkbackground.png", 16 | "idiom" : "universal", 17 | "scale" : "1x" 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "scale" : "2x" 22 | }, 23 | { 24 | "appearances" : [ 25 | { 26 | "appearance" : "luminosity", 27 | "value" : "dark" 28 | } 29 | ], 30 | "idiom" : "universal", 31 | "scale" : "2x" 32 | }, 33 | { 34 | "idiom" : "universal", 35 | "scale" : "3x" 36 | }, 37 | { 38 | "appearances" : [ 39 | { 40 | "appearance" : "luminosity", 41 | "value" : "dark" 42 | } 43 | ], 44 | "idiom" : "universal", 45 | "scale" : "3x" 46 | } 47 | ], 48 | "info" : { 49 | "author" : "xcode", 50 | "version" : 1 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchBackground.imageset/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/LaunchBackground.imageset/background.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchBackground.imageset/darkbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/LaunchBackground.imageset/darkbackground.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "LaunchImage.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "LaunchImage@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "LaunchImage@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrajix/NftAppFlutter/df979063561cf976f5ad6fc1dec47522d7609619/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 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleDisplayName 8 | Nft App Flutter 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | nft_app_flutter 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | $(FLUTTER_BUILD_NAME) 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | $(FLUTTER_BUILD_NUMBER) 25 | LSRequiresIPhoneOS 26 | 27 | UILaunchStoryboardName 28 | LaunchScreen 29 | UIMainStoryboardFile 30 | Main 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | UIInterfaceOrientationLandscapeRight 36 | 37 | UISupportedInterfaceOrientations~ipad 38 | 39 | UIInterfaceOrientationPortrait 40 | UIInterfaceOrientationPortraitUpsideDown 41 | UIInterfaceOrientationLandscapeLeft 42 | UIInterfaceOrientationLandscapeRight 43 | 44 | UIViewControllerBasedStatusBarAppearance 45 | 46 | CADisableMinimumFrameDurationOnPhone 47 | 48 | UIStatusBarHidden 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /lib/api/api_base_helper.dart: -------------------------------------------------------------------------------- 1 | import 'dart:convert'; 2 | import 'package:flutter/material.dart'; 3 | import 'package:http/http.dart'; 4 | import 'app_exceptions.dart'; 5 | import 'package:http/http.dart' as http; 6 | 7 | class ApiBaseHelper { 8 | 9 | Future get(Uri url) async { 10 | var responseJson; 11 | try{ 12 | final response = await http.get(url); 13 | responseJson = _returnResponse(response); 14 | }catch(e){ 15 | debugPrint("Error: '$e"); 16 | } 17 | return responseJson; 18 | } 19 | 20 | dynamic _returnResponse(Response response){ 21 | switch(response.statusCode){ 22 | case 200: 23 | var jsonResponse = json.decode(response.body.toString()); 24 | return jsonResponse; 25 | case 400: 26 | throw BadRequestException(response.body.toString()); 27 | case 401: 28 | case 403: 29 | throw UnauthorizedException(response.body.toString()); 30 | case 500: 31 | default: 32 | throw FetchDataException( 33 | 'An error occurred' 34 | ); 35 | } 36 | } 37 | 38 | } -------------------------------------------------------------------------------- /lib/api/app_exceptions.dart: -------------------------------------------------------------------------------- 1 | class AppException implements Exception { 2 | 3 | final _message; 4 | final _prefix; 5 | 6 | AppException(this._message, this._prefix); 7 | 8 | @override 9 | String toString(){ 10 | return "$_prefix$_message"; 11 | } 12 | 13 | } 14 | 15 | class FetchDataException extends AppException { 16 | FetchDataException(String message) 17 | : super(message, "Error"); 18 | } 19 | 20 | class BadRequestException extends AppException { 21 | BadRequestException([message]) : super (message, "Invalid Request"); 22 | } 23 | 24 | class UnauthorizedException extends AppException { 25 | UnauthorizedException([message]) : super(message, "Unauthorised"); 26 | } 27 | 28 | class InvalidInputException extends AppException { 29 | InvalidInputException([message]) : super(message, "Invalid"); 30 | } -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter/services.dart'; 3 | import 'package:flutter_bloc/flutter_bloc.dart'; 4 | import 'package:nft_app_flutter/navigation/routes.dart'; 5 | import 'package:nft_app_flutter/repository/nft_repository.dart'; 6 | 7 | import 'state/bloc/nft_bloc.dart'; 8 | import 'state/cubits/splash_cubit.dart'; 9 | import 'theme/app_theme.dart'; 10 | 11 | void main() { 12 | 13 | const SystemUiOverlayStyle( 14 | statusBarColor: Colors.transparent, 15 | statusBarIconBrightness: Brightness.dark, 16 | statusBarBrightness: Brightness.light, 17 | ); 18 | 19 | runApp( 20 | MyApp() 21 | ); 22 | 23 | } 24 | 25 | class MyApp extends StatelessWidget { 26 | 27 | MyApp({ 28 | Key? key, 29 | }) : super(key: key); 30 | 31 | final router = Navigation().router; 32 | 33 | @override 34 | Widget build(BuildContext context) { 35 | return MultiRepositoryProvider( 36 | providers: [ 37 | RepositoryProvider(create: (context) => NftRepository() 38 | ) 39 | ], 40 | child: MultiBlocProvider( 41 | providers: [ 42 | BlocProvider(create: (context) => SplashCubit()), 43 | BlocProvider(create: (context) => NftBloc(RepositoryProvider.of(context))..add(GetNftEvent())) 44 | ], 45 | child: Builder( 46 | builder: ((context){ 47 | return MaterialApp.router( 48 | debugShowCheckedModeBanner: false, 49 | routeInformationParser: router.routeInformationParser, 50 | routerDelegate: router.routerDelegate, 51 | routeInformationProvider: router.routeInformationProvider, 52 | theme: lightThemeData 53 | ); 54 | } 55 | ), 56 | )) 57 | ); 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /lib/model/TopNft.dart: -------------------------------------------------------------------------------- 1 | class TopNft { 2 | TopNft({ 3 | this.id, 4 | this.image,}); 5 | 6 | TopNft.fromJson(dynamic json) { 7 | id = json['id']; 8 | image = json['image']; 9 | } 10 | 11 | int? id; 12 | String? image; 13 | 14 | Map toJson() { 15 | final map = {}; 16 | map['id'] = id; 17 | map['image'] = image; 18 | return map; 19 | } 20 | 21 | } -------------------------------------------------------------------------------- /lib/model/TrendingNft.dart: -------------------------------------------------------------------------------- 1 | class TrendingNft { 2 | TrendingNft({ 3 | this.image, 4 | this.name, 5 | this.category, 6 | this.id}); 7 | 8 | TrendingNft.fromJson(dynamic json) { 9 | image = json['image']; 10 | name = json['name']; 11 | category = json['category']; 12 | id = json['id']; 13 | } 14 | 15 | String? image; 16 | String? name; 17 | String? category; 18 | String? id; 19 | 20 | Map toJson() { 21 | final map = {}; 22 | map['image'] = image; 23 | map['name'] = name; 24 | map['category'] = category; 25 | map['id'] = id; 26 | return map; 27 | } 28 | 29 | } -------------------------------------------------------------------------------- /lib/navigation/routes.dart: -------------------------------------------------------------------------------- 1 | import 'package:go_router/go_router.dart'; 2 | import 'package:nft_app_flutter/presentation/home.dart'; 3 | import 'package:nft_app_flutter/presentation/splash_screen.dart'; 4 | import 'package:nft_app_flutter/presentation/welcome_screen.dart'; 5 | 6 | import '../utils/constants.dart'; 7 | 8 | class Navigation { 9 | final GoRouter router = GoRouter( 10 | routes: [ 11 | GoRoute( 12 | path: Destination.splashScreen, 13 | builder: (context, state) => const SplashScreen() 14 | ), 15 | GoRoute( 16 | path: Destination.welcomeScreen, 17 | builder: (context, state) => const WelcomeScreen() 18 | ), 19 | GoRoute( 20 | path: Destination.homeScreen, 21 | builder: (context, state) => const HomeScreen() 22 | ), 23 | ] 24 | ); 25 | } -------------------------------------------------------------------------------- /lib/presentation/home.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_bloc/flutter_bloc.dart'; 3 | import 'package:nft_app_flutter/presentation/widgets/internet_not_connected.dart'; 4 | import 'package:nft_app_flutter/presentation/widgets/sliver_search_bar.dart'; 5 | import 'package:nft_app_flutter/presentation/widgets/top_pick.dart'; 6 | import 'package:nft_app_flutter/presentation/widgets/trending_items.dart'; 7 | import 'package:nft_app_flutter/state/bloc/api_state.dart'; 8 | import 'package:nft_app_flutter/state/bloc/nft_bloc.dart'; 9 | import '../utils/constants.dart'; 10 | 11 | class HomeScreen extends StatefulWidget { 12 | const HomeScreen({Key? key}) : super(key: key); 13 | 14 | @override 15 | State createState() => _HomeScreenState(); 16 | 17 | } 18 | 19 | class _HomeScreenState extends State { 20 | 21 | 22 | @override 23 | Widget build(BuildContext context) { 24 | return BlocConsumer( 25 | listener: (context, state){ 26 | if(state.isError){ 27 | ScaffoldMessenger.of(context) 28 | .showSnackBar( 29 | SnackBar( 30 | content: Text(state.error ?? Strings.customErrorMessage), 31 | duration: const Duration(milliseconds: 300) 32 | ) 33 | ); 34 | } 35 | }, 36 | builder: (context, state) { 37 | return Scaffold( 38 | backgroundColor: AppColors.mainBg, 39 | body: RefreshIndicator( 40 | onRefresh: () { 41 | return Future.delayed(const Duration(seconds: 1),() { 42 | context.read().add(GetNftEvent()); 43 | }); 44 | }, 45 | child: SafeArea( 46 | child: CustomScrollView( 47 | slivers: [ 48 | const SliverPersistentHeader( 49 | delegate: SliverSearchAppBar(), 50 | ), 51 | 52 | if(state.isError) 53 | SliverToBoxAdapter( 54 | child: SizedBox( 55 | height: MediaQuery.of(context).size.height, 56 | width: MediaQuery.of(context).size.width, 57 | child: const Center( 58 | child: Text( 59 | Strings.noInternetConnection, 60 | style: TextStyle( 61 | color: Colors.white 62 | ), 63 | ), 64 | ), 65 | ), 66 | ), 67 | 68 | if(state.isLoading) 69 | SliverToBoxAdapter( 70 | child: SizedBox( 71 | height: MediaQuery.of(context).size.height, 72 | width: MediaQuery.of(context).size.width, 73 | child: const Center( 74 | child: CircularProgressIndicator() 75 | ), 76 | ), 77 | ), 78 | 79 | if(state.isSuccess) 80 | SliverList( 81 | delegate: SliverChildListDelegate([ 82 | _featured(), 83 | _topPicks(), 84 | _trending() 85 | ]), 86 | ) 87 | ], 88 | ), 89 | ), 90 | ) 91 | ); 92 | }, 93 | ); 94 | } 95 | 96 | _featured(){ 97 | return Container( 98 | padding: const EdgeInsets.all(20), 99 | child: Column( 100 | crossAxisAlignment: CrossAxisAlignment.start, 101 | children: [ 102 | const Text( 103 | Strings.featured, 104 | style: TextStyle( 105 | fontSize: 18, 106 | color: Colors.white, 107 | fontWeight: FontWeight.bold 108 | ), 109 | ), 110 | const SizedBox(height: 10), 111 | GestureDetector( 112 | onTap: () { 113 | ScaffoldMessenger.of(context).showSnackBar( 114 | const SnackBar( 115 | content: Text(Strings.featuredItemClicked), 116 | duration: Duration(milliseconds: 200) 117 | )); 118 | }, 119 | child: Stack( 120 | alignment: Alignment.center, 121 | children: [ 122 | Container( 123 | width: double.infinity, 124 | height: 150, 125 | decoration: const BoxDecoration( 126 | image: DecorationImage( 127 | fit: BoxFit.cover, 128 | image: NetworkImage(Strings.featuredItemImage), 129 | ), 130 | borderRadius: BorderRadius.all(Radius.circular(20)) 131 | ), 132 | ), 133 | Positioned( 134 | bottom: 0, 135 | left: 0, 136 | child: Padding( 137 | padding: const EdgeInsets.all(20), 138 | child: Text( 139 | Strings.featuredItemTitle, 140 | style: TextStyle( 141 | background: Paint() 142 | ..color = AppColors.titleGrey.withOpacity(0.4) 143 | ..strokeWidth = 20 144 | ..strokeJoin = StrokeJoin.round 145 | ..strokeCap = StrokeCap.round 146 | ..style = PaintingStyle.stroke, 147 | color: Colors.white 148 | ), 149 | ), 150 | ), 151 | ) 152 | ]), 153 | ) 154 | ]), 155 | ); 156 | } 157 | 158 | _topPicks(){ 159 | return Container( 160 | padding: const EdgeInsets.only(top: 10, left: 20, right: 20), 161 | child: Column( 162 | children: [ 163 | Row( 164 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 165 | children: [ 166 | const Text( 167 | Strings.topPick, 168 | style: TextStyle( 169 | fontSize: 18, 170 | color: Colors.white, 171 | fontWeight: FontWeight.bold 172 | ), 173 | ), 174 | GestureDetector( 175 | onTap: () { 176 | ScaffoldMessenger.of(context).showSnackBar(const SnackBar( 177 | content: Text(Strings.viewAllClicked), 178 | duration: Duration(milliseconds: 200) 179 | )); 180 | }, 181 | child: const Text( 182 | Strings.viewAll, 183 | style: TextStyle( 184 | fontSize: 14, 185 | color: Colors.white, 186 | ), 187 | ), 188 | ) 189 | ], 190 | ), 191 | _topPickItems() 192 | ], 193 | ), 194 | ); 195 | } 196 | 197 | _topPickItems(){ 198 | return BlocBuilder( 199 | builder: (context, state) { 200 | return SizedBox( 201 | width: MediaQuery.of(context).size.width, 202 | height: 180, 203 | child: ListView( 204 | scrollDirection: Axis.horizontal, 205 | children: state.topNft.map((data){ 206 | return DisplayTopPick(data: data); 207 | }).toList() 208 | ), 209 | ); 210 | }, 211 | ); 212 | } 213 | 214 | _trending(){ 215 | return Container( 216 | padding: const EdgeInsets.only(top: 2, left: 20, right: 20), 217 | child: Column( 218 | crossAxisAlignment: CrossAxisAlignment.start, 219 | children: [ 220 | const Text( 221 | Strings.trending, 222 | style: TextStyle( 223 | fontSize: 18, 224 | color: Colors.white, 225 | fontWeight: FontWeight.bold 226 | ), 227 | ), 228 | _trendingItems() 229 | ] 230 | ), 231 | ); 232 | } 233 | 234 | _trendingItems(){ 235 | return BlocBuilder( 236 | builder: (context, state) { 237 | final data = state.trendingNft; 238 | return Container( 239 | padding: const EdgeInsets.only(top: 20, bottom: 20), 240 | width: MediaQuery.of(context).size.width, 241 | child: ListView.builder( 242 | shrinkWrap: true, 243 | physics: const ClampingScrollPhysics(), 244 | itemCount: state.trendingNft.length, 245 | itemBuilder: (context, index){ 246 | return DisplayTrendingItems(data: data[index], index: index); 247 | } 248 | ), 249 | ); 250 | }, 251 | ); 252 | } 253 | 254 | } 255 | 256 | -------------------------------------------------------------------------------- /lib/presentation/splash_screen.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_bloc/flutter_bloc.dart'; 3 | import 'package:go_router/go_router.dart'; 4 | import '../state/cubits/splash_cubit.dart'; 5 | import '../utils/constants.dart'; 6 | 7 | class SplashScreen extends StatefulWidget { 8 | const SplashScreen({Key? key}) : super(key: key); 9 | 10 | @override 11 | State createState() => _SplashScreenState(); 12 | 13 | } 14 | 15 | class _SplashScreenState extends State { 16 | 17 | bool animate = false; 18 | 19 | @override 20 | void didChangeDependencies() async { 21 | BlocProvider.of(context).doAnimate(); 22 | await Future.delayed(const Duration(milliseconds: 3000)); 23 | if (!mounted) return; 24 | context.go(Destination.welcomeScreen); 25 | super.didChangeDependencies(); 26 | } 27 | 28 | @override 29 | Widget build(BuildContext context) { 30 | return Scaffold( 31 | appBar: AppBar( 32 | toolbarHeight: 0, 33 | backgroundColor: Colors.black, 34 | elevation: 0, 35 | ), 36 | body: Stack( 37 | alignment: Alignment.center, 38 | children: [ 39 | BlocBuilder( 40 | builder: (context, state) { 41 | return AnimatedPositioned( 42 | curve: Curves.fastLinearToSlowEaseIn, 43 | duration: const Duration(milliseconds: 1600), 44 | bottom: state.animate ? MediaQuery.of(context).size.height/2 : 0, 45 | child: Center( 46 | child: Image.asset( 47 | Images.splashImage, 48 | height: 50, 49 | width: 50, 50 | ), 51 | ), 52 | ); 53 | } 54 | ) 55 | ], 56 | ), 57 | ); 58 | } 59 | 60 | } -------------------------------------------------------------------------------- /lib/presentation/welcome_screen.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter/services.dart'; 3 | import 'package:go_router/go_router.dart'; 4 | import 'package:nft_app_flutter/utils/constants.dart'; 5 | 6 | class WelcomeScreen extends StatefulWidget { 7 | const WelcomeScreen({Key? key}) : super(key: key); 8 | 9 | @override 10 | State createState() => _WelcomeScreenState(); 11 | } 12 | 13 | class _WelcomeScreenState extends State { 14 | @override 15 | Widget build(BuildContext context) { 16 | 17 | return Scaffold( 18 | appBar: AppBar( 19 | toolbarHeight: 0, 20 | backgroundColor: Colors.transparent, 21 | elevation: 0, 22 | ), 23 | backgroundColor: AppColors.mainBg, 24 | body: Container( 25 | width: double.infinity, 26 | height: double.infinity, 27 | padding: const EdgeInsets.only(top: 50, right: 20, left: 20, bottom: 20), 28 | child: Column( 29 | crossAxisAlignment: CrossAxisAlignment.center, 30 | children: [ 31 | const Text( 32 | Strings.nftMarketPlace, 33 | style: TextStyle( 34 | color: Colors.white, 35 | fontSize: 24, 36 | fontWeight: FontWeight.bold 37 | ), 38 | ), 39 | Image.asset( 40 | Images.lineImage, 41 | ), 42 | const SizedBox(height: 80), 43 | Image.asset( 44 | Images.engImage, 45 | scale: 1.2, 46 | ), 47 | const SizedBox(height: 80), 48 | const Text.rich( 49 | TextSpan( 50 | children: [ 51 | TextSpan( 52 | text: Strings.collect, 53 | style: TextStyle( 54 | fontSize: 25, 55 | color: AppColors.mainYellow 56 | ), 57 | ), 58 | TextSpan( 59 | text: Strings.and, 60 | style: TextStyle( 61 | fontSize: 25, 62 | color: Colors.white 63 | ), 64 | ), 65 | TextSpan( 66 | text: Strings.sell, 67 | style: TextStyle( 68 | fontSize: 25, 69 | color: AppColors.mainYellow 70 | ), 71 | ), 72 | ], 73 | ), 74 | ), 75 | const SizedBox(height: 10), 76 | const Text( 77 | Strings.digitalArts, 78 | style: TextStyle( 79 | fontSize: 25, 80 | color: Colors.white 81 | ), 82 | ), 83 | const SizedBox(height: 70), 84 | ElevatedButton( 85 | onPressed: () { 86 | context.go(Destination.homeScreen); 87 | }, 88 | style: ElevatedButton.styleFrom( 89 | backgroundColor: AppColors.mainYellow, 90 | minimumSize: const Size(250, 50), 91 | shape: RoundedRectangleBorder( 92 | borderRadius: BorderRadius.circular(60), 93 | ), 94 | ), 95 | child: const Text( 96 | Strings.continueTxt, 97 | style: TextStyle( 98 | color: Colors.black, 99 | fontWeight: FontWeight.w600 100 | ), 101 | ) 102 | ) 103 | ], 104 | ), 105 | ) 106 | ); 107 | } 108 | } 109 | -------------------------------------------------------------------------------- /lib/presentation/widgets/internet_not_connected.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:nft_app_flutter/utils/constants.dart'; 3 | 4 | class NoInternet extends StatelessWidget { 5 | const NoInternet({Key? key}) : super(key: key); 6 | 7 | @override 8 | Widget build(BuildContext context) { 9 | return Container( 10 | height: 50, 11 | width: MediaQuery.of(context).size.width, 12 | color: Colors.red, 13 | child: const Text( 14 | Strings.noInternetConnection, 15 | style: TextStyle( 16 | color: Colors.white, 17 | fontSize: 20 18 | ), 19 | ), 20 | ); 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /lib/presentation/widgets/search_bar.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import '../../utils/constants.dart'; 3 | 4 | class SearchBar extends StatelessWidget { 5 | const SearchBar({super.key}); 6 | @override 7 | Widget build(BuildContext context) { 8 | return SizedBox( 9 | width: MediaQuery.of(context).size.width, 10 | child: TextFormField( 11 | decoration: InputDecoration( 12 | filled: true, 13 | fillColor: Colors.white, 14 | focusColor: Colors.black, 15 | focusedBorder: _border(Colors.grey), 16 | border: _border(Colors.grey), 17 | enabledBorder: _border(Colors.grey), 18 | hintText: Strings.searchHere, 19 | contentPadding: const EdgeInsets.symmetric(vertical: 20), 20 | prefixIcon: const Icon( 21 | Icons.search, 22 | color: Colors.grey, 23 | ), 24 | ), 25 | onFieldSubmitted: (value) {}, 26 | ), 27 | ); 28 | } 29 | 30 | OutlineInputBorder _border(Color color) => OutlineInputBorder( 31 | borderSide: BorderSide(width: 0.5, color: color), 32 | borderRadius: BorderRadius.circular(12), 33 | ); 34 | 35 | } -------------------------------------------------------------------------------- /lib/presentation/widgets/sliver_search_bar.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/cupertino.dart'; 2 | import 'package:nft_app_flutter/presentation/widgets/search_bar.dart'; 3 | 4 | class SliverSearchAppBar extends SliverPersistentHeaderDelegate { 5 | 6 | const SliverSearchAppBar(); 7 | 8 | @override 9 | Widget build(BuildContext context, double shrinkOffset, bool overlapsContent) { 10 | return Stack( 11 | children: const [ 12 | Padding( 13 | padding: EdgeInsets.only(left: 20, right: 20, top: 20), 14 | child: SearchBar(), 15 | ) 16 | ], 17 | ); 18 | } 19 | 20 | @override 21 | double get maxExtent => 80; 22 | 23 | @override 24 | double get minExtent => 80; 25 | 26 | @override 27 | bool shouldRebuild(covariant SliverPersistentHeaderDelegate oldDelegate) => 28 | oldDelegate.maxExtent != maxExtent || oldDelegate.minExtent != minExtent; 29 | 30 | } -------------------------------------------------------------------------------- /lib/presentation/widgets/top_pick.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_bloc/flutter_bloc.dart'; 3 | import 'package:nft_app_flutter/model/TopNft.dart'; 4 | import 'package:nft_app_flutter/state/bloc/api_state.dart'; 5 | import 'package:nft_app_flutter/state/bloc/nft_bloc.dart'; 6 | 7 | import '../../utils/constants.dart'; 8 | 9 | class DisplayTopPick extends StatelessWidget { 10 | 11 | const DisplayTopPick({this.data, super.key}); 12 | 13 | final TopNft? data; 14 | 15 | @override 16 | Widget build(BuildContext context) { 17 | 18 | return Container( 19 | padding: const EdgeInsets.only(top: 20, right: 15), 20 | child: GestureDetector( 21 | onTap: () { 22 | ScaffoldMessenger.of(context).showSnackBar( SnackBar( 23 | content: Text("${Strings.topItemClicked} ${data?.id}"), 24 | duration: const Duration(milliseconds: 200), 25 | )); 26 | }, 27 | child: Column( 28 | children: [ 29 | Container( 30 | width: 140, 31 | height: 140, 32 | decoration: BoxDecoration( 33 | image: DecorationImage( 34 | fit: BoxFit.cover, 35 | image: NetworkImage(data?.image ?? ""), 36 | ), 37 | borderRadius: const BorderRadius.all(Radius.circular(20)) 38 | ), 39 | ) 40 | ], 41 | ), 42 | ), 43 | ); 44 | } 45 | } -------------------------------------------------------------------------------- /lib/presentation/widgets/trending_items.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:nft_app_flutter/model/TrendingNft.dart'; 3 | import '../../utils/constants.dart'; 4 | 5 | class DisplayTrendingItems extends StatelessWidget { 6 | 7 | const DisplayTrendingItems({this.data, this.index, Key? key}) : super(key: key); 8 | 9 | final TrendingNft? data; 10 | final int? index; 11 | 12 | @override 13 | Widget build(BuildContext context) { 14 | return GestureDetector( 15 | onTap:() { 16 | ScaffoldMessenger.of(context).showSnackBar(SnackBar( 17 | content: Text("${Strings.trendingItemClicked} ${data?.id}"), 18 | duration: const Duration(milliseconds: 200) 19 | )); 20 | }, 21 | child: Padding( 22 | padding: index == - 1 23 | ? const EdgeInsets.fromLTRB(8, 0, 8, 0) 24 | : const EdgeInsets.only(bottom: 20), 25 | child: Row( 26 | children:[ 27 | Container( 28 | width: 80, 29 | height: 80, 30 | decoration: BoxDecoration( 31 | shape: BoxShape.circle, 32 | image: DecorationImage( 33 | fit: BoxFit.fill, 34 | image: NetworkImage(data?.image ?? "") 35 | ) 36 | )), 37 | const SizedBox(width: 20), 38 | Column( 39 | crossAxisAlignment: CrossAxisAlignment.start, 40 | children: [ 41 | Text( 42 | data?.name ?? "", 43 | style: const TextStyle( 44 | fontSize: 14, 45 | color: Colors.white, 46 | ), 47 | ), 48 | const SizedBox(height: 4), 49 | Text( 50 | data?.category ?? "", 51 | style: const TextStyle( 52 | fontSize: 14, 53 | color: Colors.white, 54 | fontStyle: FontStyle.italic 55 | ), 56 | ), 57 | ], 58 | ) 59 | ], 60 | ), 61 | ), 62 | ); 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /lib/repository/nft_repository.dart: -------------------------------------------------------------------------------- 1 | import 'package:nft_app_flutter/api/api_base_helper.dart'; 2 | import 'package:nft_app_flutter/utils/constants.dart'; 3 | 4 | class NftRepository{ 5 | 6 | final ApiBaseHelper _helper = ApiBaseHelper(); 7 | 8 | getAllNft() async { 9 | final response = await Future.wait( 10 | [ 11 | _helper.get(Uri.parse(EndPoints.topNft)), 12 | _helper.get(Uri.parse(EndPoints.trendingNft)) 13 | ] 14 | ); 15 | return response; 16 | } 17 | 18 | } -------------------------------------------------------------------------------- /lib/state/bloc/api_state.dart: -------------------------------------------------------------------------------- 1 | import 'package:equatable/equatable.dart'; 2 | 3 | enum Status { 4 | loading, success, error 5 | } 6 | 7 | class ApiState extends Equatable { 8 | 9 | final Status? status; 10 | final T topNft; 11 | final T trendingNft; 12 | final String? error; 13 | 14 | const ApiState({ 15 | required this.topNft, 16 | required this.trendingNft, 17 | this.status = Status.loading, 18 | this.error 19 | }); 20 | 21 | factory ApiState.initial(T topNft, T trendingNft) => ApiState(topNft: topNft, trendingNft: trendingNft); 22 | 23 | bool get isLoading => status == Status.loading; 24 | bool get isSuccess => status == Status.success; 25 | bool get isError => error != null && status == Status.error; 26 | 27 | String getError() => error ?? ""; 28 | 29 | ApiState copyWith({ 30 | Status? status, 31 | T? topNft, 32 | T? trendingNft, 33 | String? error, 34 | }) { 35 | return ApiState( 36 | status: status ?? this.status, 37 | topNft: topNft ?? this.topNft, 38 | trendingNft: trendingNft ?? this.trendingNft, 39 | error: error ?? this.error, 40 | ); 41 | } 42 | 43 | @override 44 | List get props => [status, topNft, trendingNft, error]; 45 | 46 | } -------------------------------------------------------------------------------- /lib/state/bloc/nft_bloc.dart: -------------------------------------------------------------------------------- 1 | 2 | 3 | import 'package:bloc/bloc.dart'; 4 | import 'package:connectivity_plus/connectivity_plus.dart'; 5 | import 'package:equatable/equatable.dart'; 6 | import 'package:flutter/cupertino.dart'; 7 | import 'package:nft_app_flutter/state/bloc/api_state.dart'; 8 | import 'package:nft_app_flutter/model/TrendingNft.dart'; 9 | 10 | import '../../model/TopNft.dart'; 11 | import '../../repository/nft_repository.dart'; 12 | import '../../utils/constants.dart'; 13 | part 'nft_event.dart'; 14 | 15 | 16 | class NftBloc extends Bloc { 17 | 18 | final NftRepository _nftRepository; 19 | 20 | NftBloc(this._nftRepository) : super(ApiState.initial(const [], const [])) { 21 | 22 | on((event, emit) async { 23 | emit(state.copyWith( 24 | status: Status.loading 25 | )); 26 | try{ 27 | var connectivityResult = await (Connectivity().checkConnectivity()); 28 | if (connectivityResult == ConnectivityResult.mobile || connectivityResult == ConnectivityResult.wifi) { 29 | //connected, fire request 30 | final allNft = await _nftRepository.getAllNft(); 31 | final topNft = List.from(allNft[0].map((i) => TopNft.fromJson(i))); 32 | final trendingNft = List.from(allNft[1].map((i) => TrendingNft.fromJson(i))); 33 | emit(state.copyWith( 34 | status: Status.success, 35 | topNft: topNft, 36 | trendingNft: trendingNft 37 | )); 38 | } else { 39 | //not connected, show error message 40 | emit(state.copyWith( 41 | status: Status.error, 42 | error: Strings.noInternetConnection 43 | )); 44 | } 45 | }catch(e){ 46 | emit(state.copyWith( 47 | status: Status.error, 48 | error: e.toString() 49 | )); 50 | debugPrint("hello: $e"); 51 | } 52 | }); 53 | 54 | } 55 | 56 | } 57 | -------------------------------------------------------------------------------- /lib/state/bloc/nft_event.dart: -------------------------------------------------------------------------------- 1 | part of 'nft_bloc.dart'; 2 | 3 | @immutable 4 | abstract class NftEvent extends Equatable { 5 | const NftEvent(); 6 | } 7 | 8 | class GetNftEvent extends NftEvent { 9 | @override 10 | List get props => []; 11 | } 12 | 13 | -------------------------------------------------------------------------------- /lib/state/cubits/splash_cubit.dart: -------------------------------------------------------------------------------- 1 | import 'package:equatable/equatable.dart'; 2 | import 'package:flutter/material.dart'; 3 | import 'package:flutter_bloc/flutter_bloc.dart'; 4 | 5 | part 'splash_state.dart'; 6 | 7 | class SplashCubit extends Cubit { 8 | 9 | SplashCubit() : super(SplashState(animate: false)); 10 | 11 | Future doAnimate() async { 12 | await Future.delayed(const Duration(milliseconds: 1500)); 13 | emit(SplashState(animate: true)); 14 | await Future.delayed(const Duration(milliseconds: 1500)); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /lib/state/cubits/splash_state.dart: -------------------------------------------------------------------------------- 1 | part of 'splash_cubit.dart'; 2 | 3 | class SplashState extends Equatable { 4 | 5 | bool animate; 6 | 7 | SplashState({ 8 | required this.animate 9 | }); 10 | 11 | @override 12 | List get props => []; 13 | 14 | } 15 | -------------------------------------------------------------------------------- /lib/theme/app_theme.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:nft_app_flutter/utils/constants.dart'; 3 | 4 | final lightThemeData = ThemeData( 5 | primaryColor: AppColors.mainBg, 6 | fontFamily: "Futura" 7 | ); -------------------------------------------------------------------------------- /lib/utils/constants.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | abstract class Strings { 4 | static const nftMarketPlace = "Nft MarketPlace"; 5 | static const collect = "Collect "; 6 | static const and = "and "; 7 | static const sell = "Sell "; 8 | static const digitalArts = "Digital Arts "; 9 | static const continueTxt = "Continue "; 10 | static const searchHere = "Search here"; 11 | static const topItemClicked = "Top Pick Item Clicked "; 12 | static const trendingItemClicked = "Trending Item Clicked "; 13 | static const customErrorMessage = "Something went terribly wrong"; 14 | static const featured = "Featured"; 15 | static const topPick = "Top Pick"; 16 | static const trending = "Trending"; 17 | static const featuredItemClicked = "Featured Item Clicked"; 18 | static const featuredItemImage = "https://i.ibb.co/P6L5xNg/nft8.jpg"; 19 | static const featuredItemTitle = "Pirates Man"; 20 | static const viewAllClicked = "View All Clicked"; 21 | static const viewAll = "View All"; 22 | static const noInternetConnection = "No Internet Connection \n Swipe up to refresh"; 23 | } 24 | 25 | abstract class Images { 26 | static const splashImage = "assets/images/monkey.png"; 27 | static const lineImage = "assets/images/line.png"; 28 | static const engImage = "assets/images/eng.png"; 29 | } 30 | 31 | abstract class Destination { 32 | static const splashScreen = '/'; 33 | static const welcomeScreen = '/welcome'; 34 | static const homeScreen = '/home'; 35 | } 36 | 37 | abstract class AppColors { 38 | static const mainBg = Color(0xFF023047); 39 | static const mainYellow = Color(0xFFFFB703); 40 | static const titleGrey = Color(0xFFCBCBCB); 41 | } 42 | 43 | abstract class EndPoints { 44 | static const _baseUrl = "https://622a3463be12fc4538b54792.mockapi.io/"; 45 | static const topNft = "${_baseUrl}top"; 46 | static const trendingNft = "${_baseUrl}trending"; 47 | } -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- 1 | # Generated by pub 2 | # See https://dart.dev/tools/pub/glossary#lockfile 3 | packages: 4 | archive: 5 | dependency: transitive 6 | description: 7 | name: archive 8 | url: "https://pub.dartlang.org" 9 | source: hosted 10 | version: "3.3.4" 11 | args: 12 | dependency: transitive 13 | description: 14 | name: args 15 | url: "https://pub.dartlang.org" 16 | source: hosted 17 | version: "2.3.1" 18 | async: 19 | dependency: transitive 20 | description: 21 | name: async 22 | url: "https://pub.dartlang.org" 23 | source: hosted 24 | version: "2.9.0" 25 | bloc: 26 | dependency: transitive 27 | description: 28 | name: bloc 29 | url: "https://pub.dartlang.org" 30 | source: hosted 31 | version: "8.1.0" 32 | boolean_selector: 33 | dependency: transitive 34 | description: 35 | name: boolean_selector 36 | url: "https://pub.dartlang.org" 37 | source: hosted 38 | version: "2.1.0" 39 | characters: 40 | dependency: transitive 41 | description: 42 | name: characters 43 | url: "https://pub.dartlang.org" 44 | source: hosted 45 | version: "1.2.1" 46 | clock: 47 | dependency: transitive 48 | description: 49 | name: clock 50 | url: "https://pub.dartlang.org" 51 | source: hosted 52 | version: "1.1.1" 53 | collection: 54 | dependency: transitive 55 | description: 56 | name: collection 57 | url: "https://pub.dartlang.org" 58 | source: hosted 59 | version: "1.16.0" 60 | connectivity_plus: 61 | dependency: "direct main" 62 | description: 63 | name: connectivity_plus 64 | url: "https://pub.dartlang.org" 65 | source: hosted 66 | version: "3.0.2" 67 | connectivity_plus_platform_interface: 68 | dependency: transitive 69 | description: 70 | name: connectivity_plus_platform_interface 71 | url: "https://pub.dartlang.org" 72 | source: hosted 73 | version: "1.2.3" 74 | convert: 75 | dependency: transitive 76 | description: 77 | name: convert 78 | url: "https://pub.dartlang.org" 79 | source: hosted 80 | version: "3.1.0" 81 | crypto: 82 | dependency: transitive 83 | description: 84 | name: crypto 85 | url: "https://pub.dartlang.org" 86 | source: hosted 87 | version: "3.0.2" 88 | csslib: 89 | dependency: transitive 90 | description: 91 | name: csslib 92 | url: "https://pub.dartlang.org" 93 | source: hosted 94 | version: "0.17.2" 95 | cupertino_icons: 96 | dependency: "direct main" 97 | description: 98 | name: cupertino_icons 99 | url: "https://pub.dartlang.org" 100 | source: hosted 101 | version: "1.0.5" 102 | dbus: 103 | dependency: transitive 104 | description: 105 | name: dbus 106 | url: "https://pub.dartlang.org" 107 | source: hosted 108 | version: "0.7.8" 109 | equatable: 110 | dependency: "direct main" 111 | description: 112 | name: equatable 113 | url: "https://pub.dartlang.org" 114 | source: hosted 115 | version: "2.0.5" 116 | fake_async: 117 | dependency: transitive 118 | description: 119 | name: fake_async 120 | url: "https://pub.dartlang.org" 121 | source: hosted 122 | version: "1.3.1" 123 | ffi: 124 | dependency: transitive 125 | description: 126 | name: ffi 127 | url: "https://pub.dartlang.org" 128 | source: hosted 129 | version: "2.0.1" 130 | flutter: 131 | dependency: "direct main" 132 | description: flutter 133 | source: sdk 134 | version: "0.0.0" 135 | flutter_bloc: 136 | dependency: "direct main" 137 | description: 138 | name: flutter_bloc 139 | url: "https://pub.dartlang.org" 140 | source: hosted 141 | version: "8.1.1" 142 | flutter_lints: 143 | dependency: "direct dev" 144 | description: 145 | name: flutter_lints 146 | url: "https://pub.dartlang.org" 147 | source: hosted 148 | version: "2.0.1" 149 | flutter_native_splash: 150 | dependency: "direct main" 151 | description: 152 | name: flutter_native_splash 153 | url: "https://pub.dartlang.org" 154 | source: hosted 155 | version: "2.2.9" 156 | flutter_test: 157 | dependency: "direct dev" 158 | description: flutter 159 | source: sdk 160 | version: "0.0.0" 161 | flutter_web_plugins: 162 | dependency: transitive 163 | description: flutter 164 | source: sdk 165 | version: "0.0.0" 166 | go_router: 167 | dependency: "direct main" 168 | description: 169 | name: go_router 170 | url: "https://pub.dartlang.org" 171 | source: hosted 172 | version: "4.5.1" 173 | html: 174 | dependency: transitive 175 | description: 176 | name: html 177 | url: "https://pub.dartlang.org" 178 | source: hosted 179 | version: "0.15.1" 180 | http: 181 | dependency: "direct main" 182 | description: 183 | name: http 184 | url: "https://pub.dartlang.org" 185 | source: hosted 186 | version: "0.13.5" 187 | http_parser: 188 | dependency: transitive 189 | description: 190 | name: http_parser 191 | url: "https://pub.dartlang.org" 192 | source: hosted 193 | version: "4.0.2" 194 | image: 195 | dependency: transitive 196 | description: 197 | name: image 198 | url: "https://pub.dartlang.org" 199 | source: hosted 200 | version: "3.2.2" 201 | js: 202 | dependency: transitive 203 | description: 204 | name: js 205 | url: "https://pub.dartlang.org" 206 | source: hosted 207 | version: "0.6.4" 208 | lint: 209 | dependency: transitive 210 | description: 211 | name: lint 212 | url: "https://pub.dartlang.org" 213 | source: hosted 214 | version: "1.10.0" 215 | lints: 216 | dependency: transitive 217 | description: 218 | name: lints 219 | url: "https://pub.dartlang.org" 220 | source: hosted 221 | version: "2.0.1" 222 | logging: 223 | dependency: transitive 224 | description: 225 | name: logging 226 | url: "https://pub.dartlang.org" 227 | source: hosted 228 | version: "1.1.0" 229 | matcher: 230 | dependency: transitive 231 | description: 232 | name: matcher 233 | url: "https://pub.dartlang.org" 234 | source: hosted 235 | version: "0.12.12" 236 | material_color_utilities: 237 | dependency: transitive 238 | description: 239 | name: material_color_utilities 240 | url: "https://pub.dartlang.org" 241 | source: hosted 242 | version: "0.1.5" 243 | meta: 244 | dependency: transitive 245 | description: 246 | name: meta 247 | url: "https://pub.dartlang.org" 248 | source: hosted 249 | version: "1.8.0" 250 | nested: 251 | dependency: transitive 252 | description: 253 | name: nested 254 | url: "https://pub.dartlang.org" 255 | source: hosted 256 | version: "1.0.0" 257 | nm: 258 | dependency: transitive 259 | description: 260 | name: nm 261 | url: "https://pub.dartlang.org" 262 | source: hosted 263 | version: "0.5.0" 264 | path: 265 | dependency: transitive 266 | description: 267 | name: path 268 | url: "https://pub.dartlang.org" 269 | source: hosted 270 | version: "1.8.2" 271 | petitparser: 272 | dependency: transitive 273 | description: 274 | name: petitparser 275 | url: "https://pub.dartlang.org" 276 | source: hosted 277 | version: "5.0.0" 278 | plugin_platform_interface: 279 | dependency: transitive 280 | description: 281 | name: plugin_platform_interface 282 | url: "https://pub.dartlang.org" 283 | source: hosted 284 | version: "2.1.3" 285 | pointycastle: 286 | dependency: transitive 287 | description: 288 | name: pointycastle 289 | url: "https://pub.dartlang.org" 290 | source: hosted 291 | version: "3.6.2" 292 | provider: 293 | dependency: transitive 294 | description: 295 | name: provider 296 | url: "https://pub.dartlang.org" 297 | source: hosted 298 | version: "6.0.4" 299 | sky_engine: 300 | dependency: transitive 301 | description: flutter 302 | source: sdk 303 | version: "0.0.99" 304 | source_span: 305 | dependency: transitive 306 | description: 307 | name: source_span 308 | url: "https://pub.dartlang.org" 309 | source: hosted 310 | version: "1.9.0" 311 | stack_trace: 312 | dependency: transitive 313 | description: 314 | name: stack_trace 315 | url: "https://pub.dartlang.org" 316 | source: hosted 317 | version: "1.10.0" 318 | stream_channel: 319 | dependency: transitive 320 | description: 321 | name: stream_channel 322 | url: "https://pub.dartlang.org" 323 | source: hosted 324 | version: "2.1.0" 325 | string_scanner: 326 | dependency: transitive 327 | description: 328 | name: string_scanner 329 | url: "https://pub.dartlang.org" 330 | source: hosted 331 | version: "1.1.1" 332 | term_glyph: 333 | dependency: transitive 334 | description: 335 | name: term_glyph 336 | url: "https://pub.dartlang.org" 337 | source: hosted 338 | version: "1.2.1" 339 | test_api: 340 | dependency: transitive 341 | description: 342 | name: test_api 343 | url: "https://pub.dartlang.org" 344 | source: hosted 345 | version: "0.4.12" 346 | typed_data: 347 | dependency: transitive 348 | description: 349 | name: typed_data 350 | url: "https://pub.dartlang.org" 351 | source: hosted 352 | version: "1.3.1" 353 | universal_io: 354 | dependency: transitive 355 | description: 356 | name: universal_io 357 | url: "https://pub.dartlang.org" 358 | source: hosted 359 | version: "2.0.4" 360 | vector_math: 361 | dependency: transitive 362 | description: 363 | name: vector_math 364 | url: "https://pub.dartlang.org" 365 | source: hosted 366 | version: "2.1.2" 367 | xml: 368 | dependency: transitive 369 | description: 370 | name: xml 371 | url: "https://pub.dartlang.org" 372 | source: hosted 373 | version: "6.1.0" 374 | yaml: 375 | dependency: transitive 376 | description: 377 | name: yaml 378 | url: "https://pub.dartlang.org" 379 | source: hosted 380 | version: "3.1.1" 381 | sdks: 382 | dart: ">=2.17.6 <3.0.0" 383 | flutter: ">=3.0.0" 384 | -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: nft_app_flutter 2 | description: Nft App Showing Use Of Cubit. 3 | 4 | # The following line prevents the package from being accidentally published to 5 | # pub.dev using `flutter pub publish`. This is preferred for private packages. 6 | publish_to: 'none' # Remove this line if you wish to publish to pub.dev 7 | 8 | # The following defines the version and build number for your application. 9 | # A version number is three numbers separated by dots, like 1.2.43 10 | # followed by an optional build number separated by a +. 11 | # Both the version and the builder number may be overridden in flutter 12 | # build by specifying --build-name and --build-number, respectively. 13 | # In Android, build-name is used as versionName while build-number used as versionCode. 14 | # Read more about Android versioning at https://developer.android.com/studio/publish/versioning 15 | # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. 16 | # Read more about iOS versioning at 17 | # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html 18 | version: 1.0.0+1 19 | 20 | environment: 21 | sdk: ">=2.17.6 <3.0.0" 22 | 23 | # Dependencies specify other packages that your package needs in order to work. 24 | # To automatically upgrade your package dependencies to the latest versions 25 | # consider running `flutter pub upgrade --major-versions`. Alternatively, 26 | # dependencies can be manually updated by changing the version numbers below to 27 | # the latest version available on pub.dev. To see which dependencies have newer 28 | # versions available, run `flutter pub outdated`. 29 | dependencies: 30 | flutter: 31 | sdk: flutter 32 | 33 | cupertino_icons: ^1.0.2 34 | flutter_native_splash: ^2.2.9 35 | flutter_bloc: ^8.1.1 36 | equatable: ^2.0.5 37 | go_router: ^4.5.1 38 | http: ^0.13.5 39 | connectivity_plus: ^3.0.2 40 | 41 | dev_dependencies: 42 | flutter_test: 43 | sdk: flutter 44 | 45 | flutter_lints: ^2.0.0 46 | 47 | flutter: 48 | fonts: 49 | - family: Futura 50 | fonts: 51 | - asset: assets/fonts/futura_medium.ttf 52 | weight: 600 53 | - asset: assets/fonts/futura_normal.ttf 54 | weight: 400 55 | uses-material-design: true 56 | 57 | assets: 58 | - assets/images/ 59 | 60 | 61 | 62 | -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- 1 | // This is a basic Flutter widget test. 2 | // 3 | // To perform an interaction with a widget in your test, use the WidgetTester 4 | // utility in the flutter_test package. For example, you can send tap and scroll 5 | // gestures. You can also use WidgetTester to find child widgets in the widget 6 | // tree, read text, and verify that the values of widget properties are correct. 7 | 8 | import 'package:flutter/material.dart'; 9 | import 'package:flutter_test/flutter_test.dart'; 10 | 11 | import 'package:nft_app_flutter/main.dart'; 12 | 13 | void main() { 14 | testWidgets('Counter increments smoke test', (WidgetTester tester) async { 15 | // Build our app and trigger a frame. 16 | await tester.pumpWidget(MyApp()); 17 | 18 | // Verify that our counter starts at 0. 19 | expect(find.text('0'), findsOneWidget); 20 | expect(find.text('1'), findsNothing); 21 | 22 | // Tap the '+' icon and trigger a frame. 23 | await tester.tap(find.byIcon(Icons.add)); 24 | await tester.pump(); 25 | 26 | // Verify that our counter has incremented. 27 | expect(find.text('0'), findsNothing); 28 | expect(find.text('1'), findsOneWidget); 29 | }); 30 | } 31 | --------------------------------------------------------------------------------