An open API service indexing awesome lists of open source software.

https://github.com/kotlinoid/flutter_cross_platform_app

Discover the power of Flutter for cross-platform app development. Build stunning, high-performance applications for iOS and Android with ease
https://github.com/kotlinoid/flutter_cross_platform_app

android-application android-studio dart desktop-app flutter-app ios-app java kotlin website

Last synced: about 1 month ago
JSON representation

Discover the power of Flutter for cross-platform app development. Build stunning, high-performance applications for iOS and Android with ease

Awesome Lists containing this project

README

          





FLUTTER_CROSS_PLATFORM_APP


license
last-commit
repo-top-language
repo-language-count



Developed with the software and tools below.



Swift
HTML5
YAML
C
Kotlin


CMake
Gradle
Dart
JSON



## Quick Links

> - [ Overview](#-overview)
> - [ Features](#-features)
> - [ Repository Structure](#-repository-structure)
> - [ Modules](#-modules)
> - [ Getting Started](#-getting-started)
> - [ Installation](#-installation)
> - [ Running flutter_cross_platform_app](#-running-flutter_cross_platform_app)
> - [ Tests](#-tests)
> - [ Project Roadmap](#-project-roadmap)
> - [ Contributing](#-contributing)
> - [ License](#-license)
> - [ Acknowledgments](#-acknowledgments)

---

## Repository Structure

```sh
└── flutter_cross_platform_app/
├── README.md
├── analysis_options.yaml
├── android
│ ├── .gitignore
│ ├── app
│ │ ├── build.gradle
│ │ └── src
│ │ ├── debug
│ │ │ └── AndroidManifest.xml
│ │ ├── main
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── kotlin
│ │ │ └── res
│ │ └── profile
│ │ └── AndroidManifest.xml
│ ├── build.gradle
│ ├── gradle
│ │ └── wrapper
│ │ └── gradle-wrapper.properties
│ ├── gradle.properties
│ └── settings.gradle
├── ios
│ ├── .gitignore
│ ├── Flutter
│ │ ├── AppFrameworkInfo.plist
│ │ ├── Debug.xcconfig
│ │ └── Release.xcconfig
│ ├── Runner
│ │ ├── AppDelegate.swift
│ │ ├── Assets.xcassets
│ │ │ ├── AppIcon.appiconset
│ │ │ │ ├── Contents.json
│ │ │ │ ├── Icon-App-1024x1024@1x.png
│ │ │ │ ├── Icon-App-20x20@1x.png
│ │ │ │ ├── Icon-App-20x20@2x.png
│ │ │ │ ├── Icon-App-20x20@3x.png
│ │ │ │ ├── Icon-App-29x29@1x.png
│ │ │ │ ├── Icon-App-29x29@2x.png
│ │ │ │ ├── Icon-App-29x29@3x.png
│ │ │ │ ├── Icon-App-40x40@1x.png
│ │ │ │ ├── Icon-App-40x40@2x.png
│ │ │ │ ├── Icon-App-40x40@3x.png
│ │ │ │ ├── Icon-App-60x60@2x.png
│ │ │ │ ├── Icon-App-60x60@3x.png
│ │ │ │ ├── Icon-App-76x76@1x.png
│ │ │ │ ├── Icon-App-76x76@2x.png
│ │ │ │ └── Icon-App-83.5x83.5@2x.png
│ │ │ └── LaunchImage.imageset
│ │ │ ├── Contents.json
│ │ │ ├── LaunchImage.png
│ │ │ ├── LaunchImage@2x.png
│ │ │ ├── LaunchImage@3x.png
│ │ │ └── README.md
│ │ ├── Base.lproj
│ │ │ ├── LaunchScreen.storyboard
│ │ │ └── Main.storyboard
│ │ ├── Info.plist
│ │ └── Runner-Bridging-Header.h
│ ├── 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
│ └── RunnerTests
│ └── RunnerTests.swift
├── lib
│ └── main.dart
├── linux
│ ├── .gitignore
│ ├── CMakeLists.txt
│ ├── flutter
│ │ ├── CMakeLists.txt
│ │ ├── generated_plugin_registrant.cc
│ │ ├── generated_plugin_registrant.h
│ │ └── generated_plugins.cmake
│ ├── main.cc
│ ├── my_application.cc
│ └── my_application.h
├── macos
│ ├── .gitignore
│ ├── Flutter
│ │ ├── Flutter-Debug.xcconfig
│ │ ├── Flutter-Release.xcconfig
│ │ └── GeneratedPluginRegistrant.swift
│ ├── Runner
│ │ ├── AppDelegate.swift
│ │ ├── Assets.xcassets
│ │ │ └── AppIcon.appiconset
│ │ │ ├── Contents.json
│ │ │ ├── app_icon_1024.png
│ │ │ ├── app_icon_128.png
│ │ │ ├── app_icon_16.png
│ │ │ ├── app_icon_256.png
│ │ │ ├── app_icon_32.png
│ │ │ ├── app_icon_512.png
│ │ │ └── app_icon_64.png
│ │ ├── Base.lproj
│ │ │ └── MainMenu.xib
│ │ ├── Configs
│ │ │ ├── AppInfo.xcconfig
│ │ │ ├── Debug.xcconfig
│ │ │ ├── Release.xcconfig
│ │ │ └── Warnings.xcconfig
│ │ ├── DebugProfile.entitlements
│ │ ├── Info.plist
│ │ ├── MainFlutterWindow.swift
│ │ └── Release.entitlements
│ ├── Runner.xcodeproj
│ │ ├── project.pbxproj
│ │ ├── project.xcworkspace
│ │ │ └── xcshareddata
│ │ │ └── IDEWorkspaceChecks.plist
│ │ └── xcshareddata
│ │ └── xcschemes
│ │ └── Runner.xcscheme
│ ├── Runner.xcworkspace
│ │ ├── contents.xcworkspacedata
│ │ └── xcshareddata
│ │ └── IDEWorkspaceChecks.plist
│ └── RunnerTests
│ └── RunnerTests.swift
├── pubspec.lock
├── pubspec.yaml
├── test
│ └── widget_test.dart
├── web
│ ├── favicon.png
│ ├── icons
│ │ ├── Icon-192.png
│ │ ├── Icon-512.png
│ │ ├── Icon-maskable-192.png
│ │ └── Icon-maskable-512.png
│ ├── index.html
│ └── manifest.json
└── windows
├── .gitignore
├── CMakeLists.txt
├── flutter
│ ├── CMakeLists.txt
│ ├── generated_plugin_registrant.cc
│ ├── generated_plugin_registrant.h
│ └── generated_plugins.cmake
└── runner
├── CMakeLists.txt
├── Runner.rc
├── flutter_window.cpp
├── flutter_window.h
├── main.cpp
├── resource.h
├── resources
│ └── app_icon.ico
├── runner.exe.manifest
├── utils.cpp
├── utils.h
├── win32_window.cpp
└── win32_window.h
```

---

## Modules

.

| File | Summary |
| --- | --- |
| [pubspec.yaml](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/pubspec.yaml) | HTTP error 401 for prompt `pubspec.yaml` |
| [analysis_options.yaml](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/analysis_options.yaml) | HTTP error 401 for prompt `analysis_options.yaml` |

android

| File | Summary |
| --- | --- |
| [settings.gradle](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/android/settings.gradle) | HTTP error 401 for prompt `android/settings.gradle` |
| [build.gradle](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/android/build.gradle) | HTTP error 401 for prompt `android/build.gradle` |

android.app

| File | Summary |
| --- | --- |
| [build.gradle](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/android/app/build.gradle) | HTTP error 401 for prompt `android/app/build.gradle` |

android.app.src.main.kotlin.com.piyush.flutter_cross_platform_app.flutter_cross_platform_app

| File | Summary |
| --- | --- |
| [MainActivity.kt](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/android/app/src/main/kotlin/com/piyush/flutter_cross_platform_app/flutter_cross_platform_app/MainActivity.kt) | HTTP error 401 for prompt `android/app/src/main/kotlin/com/piyush/flutter_cross_platform_app/flutter_cross_platform_app/MainActivity.kt` |

macos.Runner.xcworkspace

| File | Summary |
| --- | --- |
| [contents.xcworkspacedata](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/macos/Runner.xcworkspace/contents.xcworkspacedata) | HTTP error 401 for prompt `macos/Runner.xcworkspace/contents.xcworkspacedata` |

macos.Runner.xcworkspace.xcshareddata

| File | Summary |
| --- | --- |
| [IDEWorkspaceChecks.plist](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist) | HTTP error 401 for prompt `macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist` |

macos.Flutter

| File | Summary |
| --- | --- |
| [Flutter-Debug.xcconfig](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/macos/Flutter/Flutter-Debug.xcconfig) | HTTP error 401 for prompt `macos/Flutter/Flutter-Debug.xcconfig` |
| [GeneratedPluginRegistrant.swift](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/macos/Flutter/GeneratedPluginRegistrant.swift) | HTTP error 401 for prompt `macos/Flutter/GeneratedPluginRegistrant.swift` |
| [Flutter-Release.xcconfig](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/macos/Flutter/Flutter-Release.xcconfig) | HTTP error 401 for prompt `macos/Flutter/Flutter-Release.xcconfig` |

macos.Runner

| File | Summary |
| --- | --- |
| [Info.plist](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/macos/Runner/Info.plist) | HTTP error 401 for prompt `macos/Runner/Info.plist` |
| [Release.entitlements](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/macos/Runner/Release.entitlements) | HTTP error 401 for prompt `macos/Runner/Release.entitlements` |
| [MainFlutterWindow.swift](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/macos/Runner/MainFlutterWindow.swift) | HTTP error 401 for prompt `macos/Runner/MainFlutterWindow.swift` |
| [AppDelegate.swift](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/macos/Runner/AppDelegate.swift) | HTTP error 401 for prompt `macos/Runner/AppDelegate.swift` |
| [DebugProfile.entitlements](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/macos/Runner/DebugProfile.entitlements) | HTTP error 401 for prompt `macos/Runner/DebugProfile.entitlements` |

macos.Runner.Configs

| File | Summary |
| --- | --- |
| [Release.xcconfig](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/macos/Runner/Configs/Release.xcconfig) | HTTP error 401 for prompt `macos/Runner/Configs/Release.xcconfig` |
| [Debug.xcconfig](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/macos/Runner/Configs/Debug.xcconfig) | HTTP error 401 for prompt `macos/Runner/Configs/Debug.xcconfig` |
| [AppInfo.xcconfig](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/macos/Runner/Configs/AppInfo.xcconfig) | HTTP error 401 for prompt `macos/Runner/Configs/AppInfo.xcconfig` |
| [Warnings.xcconfig](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/macos/Runner/Configs/Warnings.xcconfig) | HTTP error 401 for prompt `macos/Runner/Configs/Warnings.xcconfig` |

macos.Runner.Base.lproj

| File | Summary |
| --- | --- |
| [MainMenu.xib](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/macos/Runner/Base.lproj/MainMenu.xib) | HTTP error 401 for prompt `macos/Runner/Base.lproj/MainMenu.xib` |

macos.Runner.Assets.xcassets.AppIcon.appiconset

| File | Summary |
| --- | --- |
| [Contents.json](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json) | HTTP error 401 for prompt `macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json` |

macos.RunnerTests

| File | Summary |
| --- | --- |
| [RunnerTests.swift](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/macos/RunnerTests/RunnerTests.swift) | HTTP error 401 for prompt `macos/RunnerTests/RunnerTests.swift` |

macos.Runner.xcodeproj

| File | Summary |
| --- | --- |
| [project.pbxproj](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/macos/Runner.xcodeproj/project.pbxproj) | HTTP error 401 for prompt `macos/Runner.xcodeproj/project.pbxproj` |

macos.Runner.xcodeproj.project.xcworkspace.xcshareddata

| File | Summary |
| --- | --- |
| [IDEWorkspaceChecks.plist](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist) | HTTP error 401 for prompt `macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist` |

macos.Runner.xcodeproj.xcshareddata.xcschemes

| File | Summary |
| --- | --- |
| [Runner.xcscheme](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme) | HTTP error 401 for prompt `macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme` |

web

| File | Summary |
| --- | --- |
| [index.html](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/web/index.html) | HTTP error 401 for prompt `web/index.html` |
| [manifest.json](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/web/manifest.json) | HTTP error 401 for prompt `web/manifest.json` |

windows

| File | Summary |
| --- | --- |
| [CMakeLists.txt](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/windows/CMakeLists.txt) | HTTP error 401 for prompt `windows/CMakeLists.txt` |

windows.flutter

| File | Summary |
| --- | --- |
| [generated_plugins.cmake](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/windows/flutter/generated_plugins.cmake) | HTTP error 401 for prompt `windows/flutter/generated_plugins.cmake` |
| [CMakeLists.txt](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/windows/flutter/CMakeLists.txt) | HTTP error 401 for prompt `windows/flutter/CMakeLists.txt` |
| [generated_plugin_registrant.h](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/windows/flutter/generated_plugin_registrant.h) | HTTP error 401 for prompt `windows/flutter/generated_plugin_registrant.h` |
| [generated_plugin_registrant.cc](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/windows/flutter/generated_plugin_registrant.cc) | HTTP error 401 for prompt `windows/flutter/generated_plugin_registrant.cc` |

windows.runner

| File | Summary |
| --- | --- |
| [flutter_window.cpp](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/windows/runner/flutter_window.cpp) | HTTP error 401 for prompt `windows/runner/flutter_window.cpp` |
| [runner.exe.manifest](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/windows/runner/runner.exe.manifest) | HTTP error 401 for prompt `windows/runner/runner.exe.manifest` |
| [utils.h](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/windows/runner/utils.h) | HTTP error 401 for prompt `windows/runner/utils.h` |
| [win32_window.cpp](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/windows/runner/win32_window.cpp) | HTTP error 401 for prompt `windows/runner/win32_window.cpp` |
| [utils.cpp](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/windows/runner/utils.cpp) | HTTP error 401 for prompt `windows/runner/utils.cpp` |
| [main.cpp](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/windows/runner/main.cpp) | HTTP error 401 for prompt `windows/runner/main.cpp` |
| [Runner.rc](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/windows/runner/Runner.rc) | HTTP error 401 for prompt `windows/runner/Runner.rc` |
| [resource.h](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/windows/runner/resource.h) | HTTP error 401 for prompt `windows/runner/resource.h` |
| [flutter_window.h](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/windows/runner/flutter_window.h) | HTTP error 401 for prompt `windows/runner/flutter_window.h` |
| [CMakeLists.txt](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/windows/runner/CMakeLists.txt) | HTTP error 401 for prompt `windows/runner/CMakeLists.txt` |
| [win32_window.h](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/windows/runner/win32_window.h) | HTTP error 401 for prompt `windows/runner/win32_window.h` |

linux

| File | Summary |
| --- | --- |
| [main.cc](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/linux/main.cc) | HTTP error 401 for prompt `linux/main.cc` |
| [my_application.cc](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/linux/my_application.cc) | HTTP error 401 for prompt `linux/my_application.cc` |
| [my_application.h](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/linux/my_application.h) | HTTP error 401 for prompt `linux/my_application.h` |
| [CMakeLists.txt](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/linux/CMakeLists.txt) | HTTP error 401 for prompt `linux/CMakeLists.txt` |

linux.flutter

| File | Summary |
| --- | --- |
| [generated_plugins.cmake](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/linux/flutter/generated_plugins.cmake) | HTTP error 401 for prompt `linux/flutter/generated_plugins.cmake` |
| [CMakeLists.txt](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/linux/flutter/CMakeLists.txt) | HTTP error 401 for prompt `linux/flutter/CMakeLists.txt` |
| [generated_plugin_registrant.h](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/linux/flutter/generated_plugin_registrant.h) | HTTP error 401 for prompt `linux/flutter/generated_plugin_registrant.h` |
| [generated_plugin_registrant.cc](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/linux/flutter/generated_plugin_registrant.cc) | HTTP error 401 for prompt `linux/flutter/generated_plugin_registrant.cc` |

test

| File | Summary |
| --- | --- |
| [widget_test.dart](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/test/widget_test.dart) | HTTP error 401 for prompt `test/widget_test.dart` |

lib

| File | Summary |
| --- | --- |
| [main.dart](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/lib/main.dart) | HTTP error 401 for prompt `lib/main.dart` |

ios.Runner.xcworkspace

| File | Summary |
| --- | --- |
| [contents.xcworkspacedata](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/ios/Runner.xcworkspace/contents.xcworkspacedata) | HTTP error 401 for prompt `ios/Runner.xcworkspace/contents.xcworkspacedata` |

ios.Runner.xcworkspace.xcshareddata

| File | Summary |
| --- | --- |
| [IDEWorkspaceChecks.plist](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist) | HTTP error 401 for prompt `ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist` |
| [WorkspaceSettings.xcsettings](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings) | HTTP error 401 for prompt `ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings` |

ios.Flutter

| File | Summary |
| --- | --- |
| [Release.xcconfig](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/ios/Flutter/Release.xcconfig) | HTTP error 401 for prompt `ios/Flutter/Release.xcconfig` |
| [AppFrameworkInfo.plist](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/ios/Flutter/AppFrameworkInfo.plist) | HTTP error 401 for prompt `ios/Flutter/AppFrameworkInfo.plist` |
| [Debug.xcconfig](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/ios/Flutter/Debug.xcconfig) | HTTP error 401 for prompt `ios/Flutter/Debug.xcconfig` |

ios.Runner

| File | Summary |
| --- | --- |
| [Info.plist](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/ios/Runner/Info.plist) | HTTP error 401 for prompt `ios/Runner/Info.plist` |
| [Runner-Bridging-Header.h](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/ios/Runner/Runner-Bridging-Header.h) | HTTP error 401 for prompt `ios/Runner/Runner-Bridging-Header.h` |
| [AppDelegate.swift](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/ios/Runner/AppDelegate.swift) | HTTP error 401 for prompt `ios/Runner/AppDelegate.swift` |

ios.Runner.Base.lproj

| File | Summary |
| --- | --- |
| [Main.storyboard](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/ios/Runner/Base.lproj/Main.storyboard) | HTTP error 401 for prompt `ios/Runner/Base.lproj/Main.storyboard` |
| [LaunchScreen.storyboard](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/ios/Runner/Base.lproj/LaunchScreen.storyboard) | HTTP error 401 for prompt `ios/Runner/Base.lproj/LaunchScreen.storyboard` |

ios.Runner.Assets.xcassets.AppIcon.appiconset

| File | Summary |
| --- | --- |
| [Contents.json](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json) | HTTP error 401 for prompt `ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json` |

ios.Runner.Assets.xcassets.LaunchImage.imageset

| File | Summary |
| --- | --- |
| [Contents.json](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json) | HTTP error 401 for prompt `ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json` |

ios.RunnerTests

| File | Summary |
| --- | --- |
| [RunnerTests.swift](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/ios/RunnerTests/RunnerTests.swift) | HTTP error 401 for prompt `ios/RunnerTests/RunnerTests.swift` |

ios.Runner.xcodeproj

| File | Summary |
| --- | --- |
| [project.pbxproj](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/ios/Runner.xcodeproj/project.pbxproj) | HTTP error 401 for prompt `ios/Runner.xcodeproj/project.pbxproj` |

ios.Runner.xcodeproj.project.xcworkspace

| File | Summary |
| --- | --- |
| [contents.xcworkspacedata](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata) | HTTP error 401 for prompt `ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata` |

ios.Runner.xcodeproj.project.xcworkspace.xcshareddata

| File | Summary |
| --- | --- |
| [IDEWorkspaceChecks.plist](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist) | HTTP error 401 for prompt `ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist` |
| [WorkspaceSettings.xcsettings](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings) | HTTP error 401 for prompt `ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings` |

ios.Runner.xcodeproj.xcshareddata.xcschemes

| File | Summary |
| --- | --- |
| [Runner.xcscheme](https://github.com/kotlinoid/flutter_cross_platform_app/blob/master/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme) | HTTP error 401 for prompt `ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme` |

---

## Getting Started

***Requirements***

Ensure you have the following dependencies installed on your system:

* **C**: `version x.y.z`

### Installation

1. Clone the flutter_cross_platform_app repository:

```sh
git clone https://github.com/kotlinoid/flutter_cross_platform_app
```

2. Change to the project directory:

```sh
cd flutter_cross_platform_app
```

3. Install the dependencies:

```sh
gcc -o myapp main.c
```

### Running flutter_cross_platform_app

Use the following command to run flutter_cross_platform_app:

```sh
./myapp
```

### Tests

To execute tests, run:

```sh
/* No common unit test framework in C */
```

---

## Project Roadmap

- [X] `► INSERT-TASK-1`
- [ ] `► INSERT-TASK-2`
- [ ] `► ...`

---

## Contributing

Contributions are welcome! Here are several ways you can contribute:

- **[Submit Pull Requests](https://github.com/kotlinoid/flutter_cross_platform_app/blob/main/CONTRIBUTING.md)**: Review open PRs, and submit your own PRs.
- **[Join the Discussions](https://github.com/kotlinoid/flutter_cross_platform_app/discussions)**: Share your insights, provide feedback, or ask questions.
- **[Report Issues](https://github.com/kotlinoid/flutter_cross_platform_app/issues)**: Submit bugs found or log feature requests for Flutter_cross_platform_app.

Contributing Guidelines

1. **Fork the Repository**: Start by forking the project repository to your GitHub account.
2. **Clone Locally**: Clone the forked repository to your local machine using a Git client.
```sh
git clone https://github.com/kotlinoid/flutter_cross_platform_app
```
3. **Create a New Branch**: Always work on a new branch, giving it a descriptive name.
```sh
git checkout -b new-feature-x
```
4. **Make Your Changes**: Develop and test your changes locally.
5. **Commit Your Changes**: Commit with a clear message describing your updates.
```sh
git commit -m 'Implemented new feature x.'
```
6. **Push to GitHub**: Push the changes to your forked repository.
```sh
git push origin new-feature-x
```
7. **Submit a Pull Request**: Create a PR against the original project repository. Clearly describe the changes and their motivations.

Once your PR is reviewed and approved, it will be merged into the main branch.

---

## Acknowledgments

- List any resources, contributors, inspiration, etc. here.

[**Return**](#-quick-links)

---