mod add Verkauf
This commit is contained in:
parent
68355f1ed3
commit
2b69e2741d
@ -0,0 +1,24 @@
|
|||||||
|
package io.flutter.plugins;
|
||||||
|
|
||||||
|
import androidx.annotation.Keep;
|
||||||
|
import androidx.annotation.NonNull;
|
||||||
|
import io.flutter.Log;
|
||||||
|
|
||||||
|
import io.flutter.embedding.engine.FlutterEngine;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Generated file. Do not edit.
|
||||||
|
* This file is generated by the Flutter tool based on the
|
||||||
|
* plugins that support the Android platform.
|
||||||
|
*/
|
||||||
|
@Keep
|
||||||
|
public final class GeneratedPluginRegistrant {
|
||||||
|
private static final String TAG = "GeneratedPluginRegistrant";
|
||||||
|
public static void registerWith(@NonNull FlutterEngine flutterEngine) {
|
||||||
|
try {
|
||||||
|
flutterEngine.getPlugins().add(new io.flutter.plugins.pathprovider.PathProviderPlugin());
|
||||||
|
} catch (Exception e) {
|
||||||
|
Log.e(TAG, "Error registering plugin path_provider_android, io.flutter.plugins.pathprovider.PathProviderPlugin", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
2
android/local.properties
Normal file
2
android/local.properties
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
sdk.dir=C:\\Users\\atseirjo\\AppData\\Local\\Android\\sdk
|
||||||
|
flutter.sdk=C:\\flutter
|
||||||
14
ios/Flutter/Generated.xcconfig
Normal file
14
ios/Flutter/Generated.xcconfig
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
// This is a generated file; do not edit or check into version control.
|
||||||
|
FLUTTER_ROOT=C:\flutter
|
||||||
|
FLUTTER_APPLICATION_PATH=C:\Developement\flutter_kantine_app_2025
|
||||||
|
COCOAPODS_PARALLEL_CODE_SIGN=true
|
||||||
|
FLUTTER_TARGET=lib\main.dart
|
||||||
|
FLUTTER_BUILD_DIR=build
|
||||||
|
FLUTTER_BUILD_NAME=1.0.0
|
||||||
|
FLUTTER_BUILD_NUMBER=1
|
||||||
|
EXCLUDED_ARCHS[sdk=iphonesimulator*]=i386
|
||||||
|
EXCLUDED_ARCHS[sdk=iphoneos*]=armv7
|
||||||
|
DART_OBFUSCATION=false
|
||||||
|
TRACK_WIDGET_CREATION=true
|
||||||
|
TREE_SHAKE_ICONS=false
|
||||||
|
PACKAGE_CONFIG=.dart_tool/package_config.json
|
||||||
13
ios/Flutter/flutter_export_environment.sh
Normal file
13
ios/Flutter/flutter_export_environment.sh
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# This is a generated file; do not edit or check into version control.
|
||||||
|
export "FLUTTER_ROOT=C:\flutter"
|
||||||
|
export "FLUTTER_APPLICATION_PATH=C:\Developement\flutter_kantine_app_2025"
|
||||||
|
export "COCOAPODS_PARALLEL_CODE_SIGN=true"
|
||||||
|
export "FLUTTER_TARGET=lib\main.dart"
|
||||||
|
export "FLUTTER_BUILD_DIR=build"
|
||||||
|
export "FLUTTER_BUILD_NAME=1.0.0"
|
||||||
|
export "FLUTTER_BUILD_NUMBER=1"
|
||||||
|
export "DART_OBFUSCATION=false"
|
||||||
|
export "TRACK_WIDGET_CREATION=true"
|
||||||
|
export "TREE_SHAKE_ICONS=false"
|
||||||
|
export "PACKAGE_CONFIG=.dart_tool/package_config.json"
|
||||||
19
ios/Runner/GeneratedPluginRegistrant.h
Normal file
19
ios/Runner/GeneratedPluginRegistrant.h
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
//
|
||||||
|
// Generated file. Do not edit.
|
||||||
|
//
|
||||||
|
|
||||||
|
// clang-format off
|
||||||
|
|
||||||
|
#ifndef GeneratedPluginRegistrant_h
|
||||||
|
#define GeneratedPluginRegistrant_h
|
||||||
|
|
||||||
|
#import <Flutter/Flutter.h>
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_BEGIN
|
||||||
|
|
||||||
|
@interface GeneratedPluginRegistrant : NSObject
|
||||||
|
+ (void)registerWithRegistry:(NSObject<FlutterPluginRegistry>*)registry;
|
||||||
|
@end
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_END
|
||||||
|
#endif /* GeneratedPluginRegistrant_h */
|
||||||
21
ios/Runner/GeneratedPluginRegistrant.m
Normal file
21
ios/Runner/GeneratedPluginRegistrant.m
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
//
|
||||||
|
// Generated file. Do not edit.
|
||||||
|
//
|
||||||
|
|
||||||
|
// clang-format off
|
||||||
|
|
||||||
|
#import "GeneratedPluginRegistrant.h"
|
||||||
|
|
||||||
|
#if __has_include(<path_provider_foundation/PathProviderPlugin.h>)
|
||||||
|
#import <path_provider_foundation/PathProviderPlugin.h>
|
||||||
|
#else
|
||||||
|
@import path_provider_foundation;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
@implementation GeneratedPluginRegistrant
|
||||||
|
|
||||||
|
+ (void)registerWithRegistry:(NSObject<FlutterPluginRegistry>*)registry {
|
||||||
|
[PathProviderPlugin registerWithRegistrar:[registry registrarForPlugin:@"PathProviderPlugin"]];
|
||||||
|
}
|
||||||
|
|
||||||
|
@end
|
||||||
@ -112,21 +112,21 @@ class HomeController extends GetxController {
|
|||||||
confirmTextColor: Colors.white,
|
confirmTextColor: Colors.white,
|
||||||
cancelTextColor: Colors.red,
|
cancelTextColor: Colors.red,
|
||||||
buttonColor: Colors.blue,
|
buttonColor: Colors.blue,
|
||||||
onCancel: () async {
|
onCancel: () {
|
||||||
// Handle cancel action
|
|
||||||
await _loadFromNotionKantine();
|
|
||||||
Get.back();
|
Get.back();
|
||||||
},
|
},
|
||||||
onConfirm: () {
|
onConfirm: () async {
|
||||||
// Handle adding the receipt
|
// Handle adding the receipt
|
||||||
|
// Handle cancel action
|
||||||
|
await _loadFromNotionKantine();
|
||||||
print('Beleg Name: ${newBelegName.value}');
|
print('Beleg Name: ${newBelegName.value}');
|
||||||
print('Beleg Datum: ${newBelegDate.value}');
|
print('Beleg Datum: ${newBelegDate.value}');
|
||||||
print('Beleg Betrag: ${newBelegBetrag.value}');
|
print('Beleg Betrag: ${newBelegBetrag.value}');
|
||||||
Get.back();
|
Get.back();
|
||||||
|
_saveData();
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
update();
|
update();
|
||||||
_saveData();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Map<String, dynamic> currentBodyItem(
|
Map<String, dynamic> currentBodyItem(
|
||||||
|
|||||||
1
linux/flutter/ephemeral/.plugin_symlinks/path_provider_linux
Symbolic link
1
linux/flutter/ephemeral/.plugin_symlinks/path_provider_linux
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
C:/Users/atseirjo/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_linux-2.2.1/
|
||||||
11
macos/Flutter/ephemeral/Flutter-Generated.xcconfig
Normal file
11
macos/Flutter/ephemeral/Flutter-Generated.xcconfig
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
// This is a generated file; do not edit or check into version control.
|
||||||
|
FLUTTER_ROOT=C:\flutter
|
||||||
|
FLUTTER_APPLICATION_PATH=C:\Developement\flutter_kantine_app_2025
|
||||||
|
COCOAPODS_PARALLEL_CODE_SIGN=true
|
||||||
|
FLUTTER_BUILD_DIR=build
|
||||||
|
FLUTTER_BUILD_NAME=1.0.0
|
||||||
|
FLUTTER_BUILD_NUMBER=1
|
||||||
|
DART_OBFUSCATION=false
|
||||||
|
TRACK_WIDGET_CREATION=true
|
||||||
|
TREE_SHAKE_ICONS=false
|
||||||
|
PACKAGE_CONFIG=.dart_tool/package_config.json
|
||||||
12
macos/Flutter/ephemeral/flutter_export_environment.sh
Normal file
12
macos/Flutter/ephemeral/flutter_export_environment.sh
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# This is a generated file; do not edit or check into version control.
|
||||||
|
export "FLUTTER_ROOT=C:\flutter"
|
||||||
|
export "FLUTTER_APPLICATION_PATH=C:\Developement\flutter_kantine_app_2025"
|
||||||
|
export "COCOAPODS_PARALLEL_CODE_SIGN=true"
|
||||||
|
export "FLUTTER_BUILD_DIR=build"
|
||||||
|
export "FLUTTER_BUILD_NAME=1.0.0"
|
||||||
|
export "FLUTTER_BUILD_NUMBER=1"
|
||||||
|
export "DART_OBFUSCATION=false"
|
||||||
|
export "TRACK_WIDGET_CREATION=true"
|
||||||
|
export "TREE_SHAKE_ICONS=false"
|
||||||
|
export "PACKAGE_CONFIG=.dart_tool/package_config.json"
|
||||||
1
windows/flutter/ephemeral/.plugin_symlinks/path_provider_windows
Symbolic link
1
windows/flutter/ephemeral/.plugin_symlinks/path_provider_windows
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
C:/Users/atseirjo/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_windows-2.3.0/
|
||||||
Loading…
x
Reference in New Issue
Block a user