diff options
author | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2023-11-05 00:36:15 +0200 |
---|---|---|
committer | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2023-11-05 00:36:15 +0200 |
commit | efa2fba8e5a567b32c4ed789e5a23c296fac5d55 (patch) | |
tree | 05d247d64c1c3b74defc173d8bbe66a8a4b4363b /client_app_flutter/pubspec.yaml | |
parent | 7e134820f68ac3736af13e806f88659748a2dc07 (diff) |
FINALLY back on Linux and FINALLY doing something more interesting.
Changes to be committed:
new file: client_app_flutter/.gitignore
new file: client_app_flutter/.metadata
new file: client_app_flutter/README.md
new file: client_app_flutter/analysis_options.yaml
new file: client_app_flutter/android/.gitignore
new file: client_app_flutter/android/app/build.gradle
new file: client_app_flutter/android/app/src/debug/AndroidManifest.xml
new file: client_app_flutter/android/app/src/main/AndroidManifest.xml
new file: client_app_flutter/android/app/src/main/kotlin/com/example/client_app_flutter/MainActivity.kt
new file: client_app_flutter/android/app/src/main/res/drawable-v21/launch_background.xml
new file: client_app_flutter/android/app/src/main/res/drawable/launch_background.xml
new file: client_app_flutter/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
new file: client_app_flutter/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
new file: client_app_flutter/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
new file: client_app_flutter/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
new file: client_app_flutter/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
new file: client_app_flutter/android/app/src/main/res/values-night/styles.xml
new file: client_app_flutter/android/app/src/main/res/values/styles.xml
new file: client_app_flutter/android/app/src/profile/AndroidManifest.xml
new file: client_app_flutter/android/build.gradle
new file: client_app_flutter/android/gradle.properties
new file: client_app_flutter/android/gradle/wrapper/gradle-wrapper.properties
new file: client_app_flutter/android/settings.gradle
new file: client_app_flutter/ios/.gitignore
new file: client_app_flutter/ios/Flutter/AppFrameworkInfo.plist
new file: client_app_flutter/ios/Flutter/Debug.xcconfig
new file: client_app_flutter/ios/Flutter/Release.xcconfig
new file: client_app_flutter/ios/Runner.xcodeproj/project.pbxproj
new file: client_app_flutter/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
new file: client_app_flutter/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
new file: client_app_flutter/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
new file: client_app_flutter/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
new file: client_app_flutter/ios/Runner.xcworkspace/contents.xcworkspacedata
new file: client_app_flutter/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
new file: client_app_flutter/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
new file: client_app_flutter/ios/Runner/AppDelegate.swift
new file: client_app_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
new file: client_app_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png
new file: client_app_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png
new file: client_app_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png
new file: client_app_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png
new file: client_app_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png
new file: client_app_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png
new file: client_app_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png
new file: client_app_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png
new file: client_app_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
new file: client_app_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
new file: client_app_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png
new file: client_app_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
new file: client_app_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png
new file: client_app_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png
new file: client_app_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png
new file: client_app_flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
new file: client_app_flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
new file: client_app_flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
new file: client_app_flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
new file: client_app_flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md
new file: client_app_flutter/ios/Runner/Base.lproj/LaunchScreen.storyboard
new file: client_app_flutter/ios/Runner/Base.lproj/Main.storyboard
new file: client_app_flutter/ios/Runner/Info.plist
new file: client_app_flutter/ios/Runner/Runner-Bridging-Header.h
new file: client_app_flutter/ios/RunnerTests/RunnerTests.swift
new file: client_app_flutter/lib/main.dart
new file: client_app_flutter/pubspec.lock
new file: client_app_flutter/pubspec.yaml
new file: client_app_flutter/test/widget_test.dart
new file: client_app_flutter/web/favicon.png
new file: client_app_flutter/web/icons/Icon-192.png
new file: client_app_flutter/web/icons/Icon-512.png
new file: client_app_flutter/web/icons/Icon-maskable-192.png
new file: client_app_flutter/web/icons/Icon-maskable-512.png
new file: client_app_flutter/web/index.html
new file: client_app_flutter/web/manifest.json
deleted: lol
Diffstat (limited to 'client_app_flutter/pubspec.yaml')
-rw-r--r-- | client_app_flutter/pubspec.yaml | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/client_app_flutter/pubspec.yaml b/client_app_flutter/pubspec.yaml new file mode 100644 index 0000000..c77b3d0 --- /dev/null +++ b/client_app_flutter/pubspec.yaml @@ -0,0 +1,90 @@ +name: client_app_flutter +description: Code-Envision Meteo-Board Client App +# The following line prevents the package from being accidentally published to +# pub.dev using `flutter pub publish`. This is preferred for private packages. +publish_to: 'none' # Remove this line if you wish to publish to pub.dev + +# The following defines the version and build number for your application. +# A version number is three numbers separated by dots, like 1.2.43 +# followed by an optional build number separated by a +. +# Both the version and the builder number may be overridden in flutter +# build by specifying --build-name and --build-number, respectively. +# In Android, build-name is used as versionName while build-number used as versionCode. +# Read more about Android versioning at https://developer.android.com/studio/publish/versioning +# In iOS, build-name is used as CFBundleShortVersionString while build-number is used as CFBundleVersion. +# Read more about iOS versioning at +# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html +# In Windows, build-name is used as the major, minor, and patch parts +# of the product and file versions while build-number is used as the build suffix. +version: 1.0.0+1 + +environment: + sdk: '>=3.1.4 <4.0.0' + +# Dependencies specify other packages that your package needs in order to work. +# To automatically upgrade your package dependencies to the latest versions +# consider running `flutter pub upgrade --major-versions`. Alternatively, +# dependencies can be manually updated by changing the version numbers below to +# the latest version available on pub.dev. To see which dependencies have newer +# versions available, run `flutter pub outdated`. +dependencies: + flutter: + sdk: flutter + + + # The following adds the Cupertino Icons font to your application. + # Use with the CupertinoIcons class for iOS style icons. + cupertino_icons: ^1.0.2 + +dev_dependencies: + flutter_test: + sdk: flutter + + # The "flutter_lints" package below contains a set of recommended lints to + # encourage good coding practices. The lint set provided by the package is + # activated in the `analysis_options.yaml` file located at the root of your + # package. See that file for information about deactivating specific lint + # rules and activating additional ones. + flutter_lints: ^2.0.0 + +# For information on the generic Dart part of this file, see the +# following page: https://dart.dev/tools/pub/pubspec + +# The following section is specific to Flutter packages. +flutter: + + # The following line ensures that the Material Icons font is + # included with your application, so that you can use the icons in + # the material Icons class. + uses-material-design: true + + # To add assets to your application, add an assets section, like this: + # assets: + # - images/a_dot_burr.jpeg + # - images/a_dot_ham.jpeg + + # An image asset can refer to one or more resolution-specific "variants", see + # https://flutter.dev/assets-and-images/#resolution-aware + + # For details regarding adding assets from package dependencies, see + # https://flutter.dev/assets-and-images/#from-packages + + # To add custom fonts to your application, add a fonts section here, + # in this "flutter" section. Each entry in this list should have a + # "family" key with the font family name, and a "fonts" key with a + # list giving the asset and other descriptors for the font. For + # example: + # fonts: + # - family: Schyler + # fonts: + # - asset: fonts/Schyler-Regular.ttf + # - asset: fonts/Schyler-Italic.ttf + # style: italic + # - family: Trajan Pro + # fonts: + # - asset: fonts/TrajanPro.ttf + # - asset: fonts/TrajanPro_Bold.ttf + # weight: 700 + # + # For details regarding fonts from package dependencies, + # see https://flutter.dev/custom-fonts/#from-packages |