Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
UPSMF
uphrh-smf-mobile
Commits
d84ef72f
Commit
d84ef72f
authored
2 years ago
by
devendra
Browse files
Options
Download
Patches
Plain Diff
Config: Flutter version is upgraded to latest stable version
parent
f22d8895
master
add-assessor-location
two-lead-assessor
No related merge requests found
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
android/app/build.gradle
+1
-1
android/app/build.gradle
ios/Flutter/Debug.xcconfig
+1
-0
ios/Flutter/Debug.xcconfig
ios/Flutter/Release.xcconfig
+1
-0
ios/Flutter/Release.xcconfig
ios/Podfile
+41
-0
ios/Podfile
lib/constants/api_endpoints.dart
+1
-1
lib/constants/api_endpoints.dart
lib/util/notification_helper.dart
+1
-1
lib/util/notification_helper.dart
lib/widgets/lead_inspector_application_field.dart
+10
-8
lib/widgets/lead_inspector_application_field.dart
pubspec.lock
+164
-80
pubspec.lock
pubspec.yaml
+9
-9
pubspec.yaml
windows/flutter/generated_plugins.cmake
+8
-0
windows/flutter/generated_plugins.cmake
with
237 additions
and
100 deletions
+237
-100
android/app/build.gradle
+
1
−
1
View file @
d84ef72f
...
...
@@ -27,7 +27,7 @@ apply plugin: 'com.google.gms.google-services'
apply
from:
"$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
android
{
compileSdkVersion
flutter
.
compileSdkVersion
compileSdkVersion
33
compileOptions
{
sourceCompatibility
JavaVersion
.
VERSION_1_8
...
...
This diff is collapsed.
Click to expand it.
ios/Flutter/Debug.xcconfig
+
1
−
0
View file @
d84ef72f
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
#include "Generated.xcconfig"
This diff is collapsed.
Click to expand it.
ios/Flutter/Release.xcconfig
+
1
−
0
View file @
d84ef72f
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
#include "Generated.xcconfig"
This diff is collapsed.
Click to expand it.
ios/Podfile
0 → 100644
+
41
−
0
View file @
d84ef72f
# Uncomment this line to define a global platform for your project
# platform :ios, '9.0'
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV
[
'COCOAPODS_DISABLE_STATS'
]
=
'true'
project
'Runner'
,
{
'Debug'
=>
:debug
,
'Profile'
=>
:release
,
'Release'
=>
:release
,
}
def
flutter_root
generated_xcode_build_settings_path
=
File
.
expand_path
(
File
.
join
(
'..'
,
'Flutter'
,
'Generated.xcconfig'
),
__FILE__
)
unless
File
.
exist?
(
generated_xcode_build_settings_path
)
raise
"
#{
generated_xcode_build_settings_path
}
must exist. If you're running pod install manually, make sure flutter pub get is executed first"
end
File
.
foreach
(
generated_xcode_build_settings_path
)
do
|
line
|
matches
=
line
.
match
(
/FLUTTER_ROOT\=(.*)/
)
return
matches
[
1
].
strip
if
matches
end
raise
"FLUTTER_ROOT not found in
#{
generated_xcode_build_settings_path
}
. Try deleting Generated.xcconfig, then run flutter pub get"
end
require
File
.
expand_path
(
File
.
join
(
'packages'
,
'flutter_tools'
,
'bin'
,
'podhelper'
),
flutter_root
)
flutter_ios_podfile_setup
target
'Runner'
do
use_frameworks!
use_modular_headers!
flutter_install_all_ios_pods
File
.
dirname
(
File
.
realpath
(
__FILE__
))
end
post_install
do
|
installer
|
installer
.
pods_project
.
targets
.
each
do
|
target
|
flutter_additional_ios_build_settings
(
target
)
end
end
This diff is collapsed.
Click to expand it.
lib/constants/api_endpoints.dart
+
1
−
1
View file @
d84ef72f
class
ApiUrl
{
static
const
baseUrl
=
'http
s
://
smfdev.idc.tarento.com
'
;
static
const
baseUrl
=
'http://
157.230.176.228
'
;
static
const
getOtp
=
'
$baseUrl
/api/user/requestOTP'
;
static
const
validateOtp
=
'
$baseUrl
/api/signIn'
;
static
const
generatePin
=
'
$baseUrl
/api/user/generatePin'
;
...
...
This diff is collapsed.
Click to expand it.
lib/util/notification_helper.dart
+
1
−
1
View file @
d84ef72f
...
...
@@ -46,7 +46,7 @@ class NotificationHelper {
styleInformation:
BigTextStyleInformation
(
''
),
);
var
iOSPlatformChannelSpecifics
=
const
IOS
NotificationDetails
();
var
iOSPlatformChannelSpecifics
=
const
Darwin
NotificationDetails
();
var
platformChannelSpecifics
=
NotificationDetails
(
android:
androidPlatformChannelSpecifics
,
iOS:
iOSPlatformChannelSpecifics
);
...
...
This diff is collapsed.
Click to expand it.
lib/widgets/lead_inspector_application_field.dart
+
10
−
8
View file @
d84ef72f
...
...
@@ -239,20 +239,22 @@ class _LeadInspectorApplicationFieldState
XFile
?
image
=
await
_picker
.
pickImage
(
source
:
source
)
;
if
(
image
!=
null
)
{
try
{
File
?
cropped
=
await
ImageCropper
()
.
cropImage
(
Cropped
File
?
cropped
=
await
ImageCropper
()
.
cropImage
(
sourcePath:
image
.
path
,
aspectRatio:
const
CropAspectRatio
(
ratioX:
1
,
ratioY:
1
),
compressQuality:
100
,
maxWidth:
700
,
maxHeight:
700
,
compressFormat:
ImageCompressFormat
.
jpg
,
androidUiSettings:
AndroidUiSettings
(
toolbarColor:
AppColors
.
primaryBlue
,
toolbarTitle:
'Crop image'
,
toolbarWidgetColor:
Colors
.
white
,
statusBarColor:
Colors
.
grey
.
shade900
,
backgroundColor:
Colors
.
white
,
))
;
uiSettings:
[
AndroidUiSettings
(
toolbarColor:
AppColors
.
primaryBlue
,
toolbarTitle:
'Crop image'
,
toolbarWidgetColor:
Colors
.
white
,
statusBarColor:
Colors
.
grey
.
shade900
,
backgroundColor:
Colors
.
white
,
)
])
;
String
fileUrl
=
''
;
bool
isInternetConnected
=
await
Helper
.
isInternetConnected
();
...
...
This diff is collapsed.
Click to expand it.
pubspec.lock
+
164
−
80
View file @
d84ef72f
# Generated by pub
# See https://dart.dev/tools/pub/glossary#lockfile
packages:
_flutterfire_internals:
dependency: transitive
description:
name: _flutterfire_internals
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.9"
archive:
dependency: transitive
description:
name: archive
url: "https://pub.dartlang.org"
source: hosted
version: "3.
1.11
"
version: "3.
3.5
"
args:
dependency: transitive
description:
name: args
url: "https://pub.dartlang.org"
source: hosted
version: "2.3.
0
"
version: "2.3.
1
"
async:
dependency: transitive
description:
...
...
@@ -42,7 +49,7 @@ packages:
name: change_app_package_name
url: "https://pub.dartlang.org"
source: hosted
version: "1.
0
.0"
version: "1.
1
.0"
characters:
dependency: transitive
description:
...
...
@@ -57,6 +64,20 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "1.3.1"
checked_yaml:
dependency: transitive
description:
name: checked_yaml
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.1"
cli_util:
dependency: transitive
description:
name: cli_util
url: "https://pub.dartlang.org"
source: hosted
version: "0.3.5"
clock:
dependency: transitive
description:
...
...
@@ -64,160 +85,181 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.0"
cloud_firestore_platform_interface:
dependency: transitive
description:
name: cloud_firestore_platform_interface
url: "https://pub.dartlang.org"
source: hosted
version: "5.9.0"
cloud_firestore_web:
dependency: transitive
description:
name: cloud_firestore_web
url: "https://pub.dartlang.org"
source: hosted
version: "3.1.0"
collection:
dependency: transitive
description:
name: collection
url: "https://pub.dartlang.org"
source: hosted
version: "1.1
5
.0"
version: "1.1
6
.0"
connectivity_plus:
dependency: "direct main"
description:
name: connectivity_plus
url: "https://pub.dartlang.org"
source: hosted
version: "2.
2.1
"
version: "2.
3.9
"
connectivity_plus_linux:
dependency: transitive
description:
name: connectivity_plus_linux
url: "https://pub.dartlang.org"
source: hosted
version: "1.3.
0
"
version: "1.3.
1
"
connectivity_plus_macos:
dependency: transitive
description:
name: connectivity_plus_macos
url: "https://pub.dartlang.org"
source: hosted
version: "1.2.
1
"
version: "1.2.
6
"
connectivity_plus_platform_interface:
dependency: transitive
description:
name: connectivity_plus_platform_interface
url: "https://pub.dartlang.org"
source: hosted
version: "1.2.
0
"
version: "1.2.
3
"
connectivity_plus_web:
dependency: transitive
description:
name: connectivity_plus_web
url: "https://pub.dartlang.org"
source: hosted
version: "1.2.
0
"
version: "1.2.
5
"
connectivity_plus_windows:
dependency: transitive
description:
name: connectivity_plus_windows
url: "https://pub.dartlang.org"
source: hosted
version: "1.2.0"
version: "1.2.2"
convert:
dependency: transitive
description:
name: convert
url: "https://pub.dartlang.org"
source: hosted
version: "3.1.0"
cross_file:
dependency: transitive
description:
name: cross_file
url: "https://pub.dartlang.org"
source: hosted
version: "0.3.2"
version: "0.3.
3+
2"
crypto:
dependency: transitive
description:
name: crypto
url: "https://pub.dartlang.org"
source: hosted
version: "3.0.
1
"
version: "3.0.
2
"
cupertino_icons:
dependency: "direct main"
description:
name: cupertino_icons
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.
4
"
version: "1.0.
5
"
dbus:
dependency: transitive
description:
name: dbus
url: "https://pub.dartlang.org"
source: hosted
version: "0.7.
1
"
version: "0.7.
8
"
dio:
dependency: "direct main"
description:
name: dio
url: "https://pub.dartlang.org"
source: hosted
version: "4.0.
4
"
version: "4.0.
6
"
email_validator:
dependency: "direct main"
description:
name: email_validator
url: "https://pub.dartlang.org"
source: hosted
version: "2.
0
.1"
version: "2.
1
.1
7
"
fake_async:
dependency: transitive
description:
name: fake_async
url: "https://pub.dartlang.org"
source: hosted
version: "1.
2
.0"
version: "1.
3
.0"
ffi:
dependency: transitive
description:
name: ffi
url: "https://pub.dartlang.org"
source: hosted
version: "
1.1.2
"
version: "
2.0.1
"
file:
dependency: transitive
description:
name: file
url: "https://pub.dartlang.org"
source: hosted
version: "6.1.
2
"
version: "6.1.
4
"
firebase_core:
dependency: "direct main"
description:
name: firebase_core
url: "https://pub.dartlang.org"
source: hosted
version: "
1.12
.0"
version: "
2.3
.0"
firebase_core_platform_interface:
dependency: transitive
description:
name: firebase_core_platform_interface
url: "https://pub.dartlang.org"
source: hosted
version: "4.
2.5
"
version: "4.
5.2
"
firebase_core_web:
dependency: transitive
description:
name: firebase_core_web
url: "https://pub.dartlang.org"
source: hosted
version: "
1.6
.1"
version: "
2.0
.1"
firebase_messaging:
dependency: "direct main"
description:
name: firebase_messaging
url: "https://pub.dartlang.org"
source: hosted
version: "1
1.2.11
"
version: "1
4.1.3
"
firebase_messaging_platform_interface:
dependency: transitive
description:
name: firebase_messaging_platform_interface
url: "https://pub.dartlang.org"
source: hosted
version: "
3
.2.
1
"
version: "
4
.2.
7
"
firebase_messaging_web:
dependency: transitive
description:
name: firebase_messaging_web
url: "https://pub.dartlang.org"
source: hosted
version: "
2
.2.
9
"
version: "
3
.2.
8
"
flutter:
dependency: "direct main"
description: flutter
...
...
@@ -229,35 +271,35 @@ packages:
name: flutter_launcher_icons
url: "https://pub.dartlang.org"
source: hosted
version: "0.
9.2
"
version: "0.
11.0
"
flutter_lints:
dependency: "direct dev"
description:
name: flutter_lints
url: "https://pub.dartlang.org"
source: hosted
version: "
1
.0.
4
"
version: "
2
.0.
1
"
flutter_local_notifications:
dependency: "direct main"
description:
name: flutter_local_notifications
url: "https://pub.dartlang.org"
source: hosted
version: "
9.3.2
"
version: "
12.0.4
"
flutter_local_notifications_linux:
dependency: transitive
description:
name: flutter_local_notifications_linux
url: "https://pub.dartlang.org"
source: hosted
version: "
0.4.2
"
version: "
2.0.0
"
flutter_local_notifications_platform_interface:
dependency: transitive
description:
name: flutter_local_notifications_platform_interface
url: "https://pub.dartlang.org"
source: hosted
version: "
5
.0.0"
version: "
6
.0.0"
flutter_localizations:
dependency: "direct main"
description: flutter
...
...
@@ -269,49 +311,49 @@ packages:
name: flutter_plugin_android_lifecycle
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.
5
"
version: "2.0.
7
"
flutter_secure_storage:
dependency: "direct main"
description:
name: flutter_secure_storage
url: "https://pub.dartlang.org"
source: hosted
version: "
5.0.2
"
version: "
6.1.0
"
flutter_secure_storage_linux:
dependency: transitive
description:
name: flutter_secure_storage_linux
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.
0
"
version: "1.1.
2
"
flutter_secure_storage_macos:
dependency: transitive
description:
name: flutter_secure_storage_macos
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.
0
"
version: "1.1.
2
"
flutter_secure_storage_platform_interface:
dependency: transitive
description:
name: flutter_secure_storage_platform_interface
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.
0
"
version: "1.0.
1
"
flutter_secure_storage_web:
dependency: transitive
description:
name: flutter_secure_storage_web
url: "https://pub.dartlang.org"
source: hosted
version: "1.
0.2
"
version: "1.
1.1
"
flutter_secure_storage_windows:
dependency: transitive
description:
name: flutter_secure_storage_windows
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.
2
"
version: "1.1.
3
"
flutter_test:
dependency: "direct dev"
description: flutter
...
...
@@ -328,63 +370,91 @@ packages:
name: fluttertoast
url: "https://pub.dartlang.org"
source: hosted
version: "8.
0.8
"
version: "8.
1.1
"
google_fonts:
dependency: "direct main"
description:
name: google_fonts
url: "https://pub.dartlang.org"
source: hosted
version: "
2.3
.1"
version: "
3.0
.1"
http:
dependency: transitive
description:
name: http
url: "https://pub.dartlang.org"
source: hosted
version: "0.13.
4
"
version: "0.13.
5
"
http_parser:
dependency: transitive
description:
name: http_parser
url: "https://pub.dartlang.org"
source: hosted
version: "4.0.
0
"
version: "4.0.
2
"
image:
dependency: transitive
description:
name: image
url: "https://pub.dartlang.org"
source: hosted
version: "3.
1.1
"
version: "3.
2.2
"
image_cropper:
dependency: "direct main"
description:
name: image_cropper
url: "https://pub.dartlang.org"
source: hosted
version: "1.5.0"
version: "3.0.1"
image_cropper_for_web:
dependency: transitive
description:
name: image_cropper_for_web
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.3"
image_cropper_platform_interface:
dependency: transitive
description:
name: image_cropper_platform_interface
url: "https://pub.dartlang.org"
source: hosted
version: "3.0.3"
image_picker:
dependency: "direct main"
description:
name: image_picker
url: "https://pub.dartlang.org"
source: hosted
version: "0.8.4+11"
version: "0.8.6"
image_picker_android:
dependency: transitive
description:
name: image_picker_android
url: "https://pub.dartlang.org"
source: hosted
version: "0.8.5+3"
image_picker_for_web:
dependency: transitive
description:
name: image_picker_for_web
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.6"
version: "2.1.10"
image_picker_ios:
dependency: transitive
description:
name: image_picker_ios
url: "https://pub.dartlang.org"
source: hosted
version: "0.8.6+1"
image_picker_platform_interface:
dependency: transitive
description:
name: image_picker_platform_interface
url: "https://pub.dartlang.org"
source: hosted
version: "2.
4.4
"
version: "2.
6.2
"
intl:
dependency: "direct main"
description:
...
...
@@ -398,7 +468,14 @@ packages:
name: js
url: "https://pub.dartlang.org"
source: hosted
version: "0.6.3"
version: "0.6.4"
json_annotation:
dependency: transitive
description:
name: json_annotation
url: "https://pub.dartlang.org"
source: hosted
version: "4.7.0"
jwt_decoder:
dependency: "direct main"
description:
...
...
@@ -412,7 +489,7 @@ packages:
name: lints
url: "https://pub.dartlang.org"
source: hosted
version: "
1
.0.1"
version: "
2
.0.1"
matcher:
dependency: transitive
description:
...
...
@@ -426,7 +503,7 @@ packages:
name: material_color_utilities
url: "https://pub.dartlang.org"
source: hosted
version: "0.1.
3
"
version: "0.1.
4
"
meta:
dependency: transitive
description:
...
...
@@ -454,70 +531,70 @@ packages:
name: otp_text_field
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.
2
"
version: "1.1.
3
"
path:
dependency: transitive
description:
name: path
url: "https://pub.dartlang.org"
source: hosted
version: "1.8.
0
"
version: "1.8.
1
"
path_provider:
dependency: transitive
description:
name: path_provider
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.
9
"
version: "2.0.
11
"
path_provider_android:
dependency: transitive
description:
name: path_provider_android
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.
11
"
version: "2.0.
22
"
path_provider_ios:
dependency: transitive
description:
name: path_provider_ios
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.
7
"
version: "2.0.
11
"
path_provider_linux:
dependency: transitive
description:
name: path_provider_linux
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.
5
"
version: "2.1.
7
"
path_provider_macos:
dependency: transitive
description:
name: path_provider_macos
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.
5
"
version: "2.0.
6
"
path_provider_platform_interface:
dependency: transitive
description:
name: path_provider_platform_interface
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.
3
"
version: "2.0.
5
"
path_provider_windows:
dependency: transitive
description:
name: path_provider_windows
url: "https://pub.dartlang.org"
source: hosted
version: "2.
0.5
"
version: "2.
1.3
"
petitparser:
dependency: transitive
description:
name: petitparser
url: "https://pub.dartlang.org"
source: hosted
version: "
4.4
.0"
version: "
5.0
.0"
platform:
dependency: transitive
description:
...
...
@@ -531,7 +608,14 @@ packages:
name: plugin_platform_interface
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.2"
version: "2.1.3"
pointycastle:
dependency: transitive
description:
name: pointycastle
url: "https://pub.dartlang.org"
source: hosted
version: "3.6.2"
process:
dependency: transitive
description:
...
...
@@ -545,7 +629,7 @@ packages:
name: provider
url: "https://pub.dartlang.org"
source: hosted
version: "6.0.
2
"
version: "6.0.
4
"
sky_engine:
dependency: transitive
description: flutter
...
...
@@ -557,21 +641,21 @@ packages:
name: source_span
url: "https://pub.dartlang.org"
source: hosted
version: "1.8.
1
"
version: "1.8.
2
"
sqflite:
dependency: "direct main"
description:
name: sqflite
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.
2
"
version: "2.0.
3+1
"
sqflite_common:
dependency: transitive
description:
name: sqflite_common
url: "https://pub.dartlang.org"
source: hosted
version: "2.
2
.0"
version: "2.
4
.0"
stack_trace:
dependency: transitive
description:
...
...
@@ -599,7 +683,7 @@ packages:
name: synchronized
url: "https://pub.dartlang.org"
source: hosted
version: "3.0.0"
version: "3.0.0
+3
"
term_glyph:
dependency: transitive
description:
...
...
@@ -613,91 +697,91 @@ packages:
name: test_api
url: "https://pub.dartlang.org"
source: hosted
version: "0.4.
8
"
version: "0.4.
9
"
timezone:
dependency: transitive
description:
name: timezone
url: "https://pub.dartlang.org"
source: hosted
version: "0.
8
.0"
version: "0.
9
.0"
typed_data:
dependency: transitive
description:
name: typed_data
url: "https://pub.dartlang.org"
source: hosted
version: "1.3.
0
"
version: "1.3.
1
"
unique_identifier:
dependency: "direct main"
description:
name: unique_identifier
url: "https://pub.dartlang.org"
source: hosted
version: "0.
2.2
"
version: "0.
3.0
"
vector_math:
dependency: transitive
description:
name: vector_math
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.
1
"
version: "2.1.
2
"
webview_flutter:
dependency: "direct main"
description:
name: webview_flutter
url: "https://pub.dartlang.org"
source: hosted
version: "3.0.
1
"
version: "3.0.
4
"
webview_flutter_android:
dependency: transitive
description:
name: webview_flutter_android
url: "https://pub.dartlang.org"
source: hosted
version: "2.
8.3
"
version: "2.
10.4
"
webview_flutter_platform_interface:
dependency: transitive
description:
name: webview_flutter_platform_interface
url: "https://pub.dartlang.org"
source: hosted
version: "1.
8.1
"
version: "1.
9.5
"
webview_flutter_wkwebview:
dependency: transitive
description:
name: webview_flutter_wkwebview
url: "https://pub.dartlang.org"
source: hosted
version: "2.
7.1
"
version: "2.
9.5
"
win32:
dependency: transitive
description:
name: win32
url: "https://pub.dartlang.org"
source: hosted
version: "
2.
3.1
1
"
version: "3.1
.2
"
xdg_directories:
dependency: transitive
description:
name: xdg_directories
url: "https://pub.dartlang.org"
source: hosted
version: "0.2.0+
1
"
version: "0.2.0+
2
"
xml:
dependency: transitive
description:
name: xml
url: "https://pub.dartlang.org"
source: hosted
version: "
5.3.1
"
version: "
6.1.0
"
yaml:
dependency: transitive
description:
name: yaml
url: "https://pub.dartlang.org"
source: hosted
version: "3.1.
0
"
version: "3.1.
1
"
sdks:
dart: ">=2.1
6
.0 <3.0.0"
flutter: ">=
2.10.0-
0"
dart: ">=2.1
7
.0 <3.0.0"
flutter: ">=
3.0.
0"
This diff is collapsed.
Click to expand it.
pubspec.yaml
+
9
−
9
View file @
d84ef72f
...
...
@@ -36,24 +36,24 @@ dependencies:
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons
:
^1.0.2
big_tip
:
^2.0.0
google_fonts
:
^
2.3
.1
google_fonts
:
^
3.0
.1
otp_text_field
:
^1.1.2
flutter_launcher_icons
:
^0.
9.2
flutter_secure_storage
:
^
5.0.2
flutter_launcher_icons
:
^0.
11.0
flutter_secure_storage
:
^
6.1.0
provider
:
^6.0.2
fluttertoast
:
^8.0.8
jwt_decoder
:
^2.0.1
intl
:
^0.17.0
firebase_messaging
:
^1
1.2.11
firebase_core
:
^
1.12
.0
flutter_local_notifications
:
^
9.3.2
unique_identifier
:
^0.
2.2
firebase_messaging
:
^1
4.1.3
firebase_core
:
^
2.3
.0
flutter_local_notifications
:
^
12.0.4
unique_identifier
:
^0.
3.0
sqflite
:
^2.0.2
connectivity_plus
:
^2.2.1
change_app_package_name
:
^1.0.0
email_validator
:
^2.0.1
image_picker
:
^0.8.4+11
image_cropper
:
^
1.5.0
image_cropper
:
^
3.0.1
dio
:
^4.0.4
webview_flutter
:
^3.0.1
...
...
@@ -66,7 +66,7 @@ dev_dependencies:
# 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
:
^
1
.0.
0
flutter_lints
:
^
2
.0.
1
# For information on the generic Dart part of this file, see the
# following page: https://dart.dev/tools/pub/pubspec
...
...
This diff is collapsed.
Click to expand it.
windows/flutter/generated_plugins.cmake
+
8
−
0
View file @
d84ef72f
...
...
@@ -7,6 +7,9 @@ list(APPEND FLUTTER_PLUGIN_LIST
flutter_secure_storage_windows
)
list
(
APPEND FLUTTER_FFI_PLUGIN_LIST
)
set
(
PLUGIN_BUNDLED_LIBRARIES
)
foreach
(
plugin
${
FLUTTER_PLUGIN_LIST
}
)
...
...
@@ -15,3 +18,8 @@ foreach(plugin ${FLUTTER_PLUGIN_LIST})
list
(
APPEND PLUGIN_BUNDLED_LIBRARIES $<TARGET_FILE:
${
plugin
}
_plugin>
)
list
(
APPEND PLUGIN_BUNDLED_LIBRARIES
${${
plugin
}
_bundled_libraries
}
)
endforeach
(
plugin
)
foreach
(
ffi_plugin
${
FLUTTER_FFI_PLUGIN_LIST
}
)
add_subdirectory
(
flutter/ephemeral/.plugin_symlinks/
${
ffi_plugin
}
/windows plugins/
${
ffi_plugin
}
)
list
(
APPEND PLUGIN_BUNDLED_LIBRARIES
${${
ffi_plugin
}
_bundled_libraries
}
)
endforeach
(
ffi_plugin
)
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets