Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
Monitoring and Recommendations For Early Childhood Development
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Sandunika Senavirathna
Monitoring and Recommendations For Early Childhood Development
Commits
297be4e6
Commit
297be4e6
authored
May 13, 2024
by
Tharindi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commit changes
parent
bdffde06
Changes
11
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
546 additions
and
779 deletions
+546
-779
.dart_tool/flutter_build/dart_plugin_registrant.dart
.dart_tool/flutter_build/dart_plugin_registrant.dart
+0
-302
.dart_tool/package_config.json
.dart_tool/package_config.json
+162
-138
.dart_tool/package_config_subset
.dart_tool/package_config_subset
+284
-268
.dart_tool/version
.dart_tool/version
+1
-1
.flutter-plugins
.flutter-plugins
+45
-45
.flutter-plugins-dependencies
.flutter-plugins-dependencies
+1
-1
build/f5594b638e9d3f0189529986a6285d2e/_composite.stamp
build/f5594b638e9d3f0189529986a6285d2e/_composite.stamp
+0
-1
build/f5594b638e9d3f0189529986a6285d2e/gen_dart_plugin_registrant.stamp
...8e9d3f0189529986a6285d2e/gen_dart_plugin_registrant.stamp
+0
-1
build/f5594b638e9d3f0189529986a6285d2e/gen_localizations.stamp
.../f5594b638e9d3f0189529986a6285d2e/gen_localizations.stamp
+0
-1
lib/game2/song_tales.dart
lib/game2/song_tales.dart
+2
-2
pubspec.lock
pubspec.lock
+51
-19
No files found.
.dart_tool/flutter_build/dart_plugin_registrant.dart
deleted
100644 → 0
View file @
bdffde06
//
// Generated file. Do not edit.
// This file is generated from template in file `flutter_tools/lib/src/flutter_plugins.dart`.
//
// @dart = 3.0
import
'dart:io'
;
// flutter_ignore: dart_io_import.
import
'package:image_picker_android/image_picker_android.dart'
;
import
'package:path_provider_android/path_provider_android.dart'
;
import
'package:shared_preferences_android/shared_preferences_android.dart'
;
import
'package:sqflite/sqflite.dart'
;
import
'package:url_launcher_android/url_launcher_android.dart'
;
import
'package:video_player_android/video_player_android.dart'
;
import
'package:image_picker_ios/image_picker_ios.dart'
;
import
'package:path_provider_foundation/path_provider_foundation.dart'
;
import
'package:shared_preferences_foundation/shared_preferences_foundation.dart'
;
import
'package:sqflite/sqflite.dart'
;
import
'package:url_launcher_ios/url_launcher_ios.dart'
;
import
'package:video_player_avfoundation/video_player_avfoundation.dart'
;
import
'package:file_selector_linux/file_selector_linux.dart'
;
import
'package:image_picker_linux/image_picker_linux.dart'
;
import
'package:path_provider_linux/path_provider_linux.dart'
;
import
'package:shared_preferences_linux/shared_preferences_linux.dart'
;
import
'package:url_launcher_linux/url_launcher_linux.dart'
;
import
'package:file_selector_macos/file_selector_macos.dart'
;
import
'package:image_picker_macos/image_picker_macos.dart'
;
import
'package:path_provider_foundation/path_provider_foundation.dart'
;
import
'package:shared_preferences_foundation/shared_preferences_foundation.dart'
;
import
'package:sqflite/sqflite.dart'
;
import
'package:url_launcher_macos/url_launcher_macos.dart'
;
import
'package:file_selector_windows/file_selector_windows.dart'
;
import
'package:image_picker_windows/image_picker_windows.dart'
;
import
'package:path_provider_windows/path_provider_windows.dart'
;
import
'package:shared_preferences_windows/shared_preferences_windows.dart'
;
import
'package:url_launcher_windows/url_launcher_windows.dart'
;
@pragma
(
'vm:entry-point'
)
class
_PluginRegistrant
{
@pragma
(
'vm:entry-point'
)
static
void
register
()
{
if
(
Platform
.
isAndroid
)
{
try
{
ImagePickerAndroid
.
registerWith
();
}
catch
(
err
)
{
print
(
'`image_picker_android` threw an error:
$err
. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try
{
PathProviderAndroid
.
registerWith
();
}
catch
(
err
)
{
print
(
'`path_provider_android` threw an error:
$err
. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try
{
SharedPreferencesAndroid
.
registerWith
();
}
catch
(
err
)
{
print
(
'`shared_preferences_android` threw an error:
$err
. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try
{
SqflitePlugin
.
registerWith
();
}
catch
(
err
)
{
print
(
'`sqflite` threw an error:
$err
. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try
{
UrlLauncherAndroid
.
registerWith
();
}
catch
(
err
)
{
print
(
'`url_launcher_android` threw an error:
$err
. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try
{
AndroidVideoPlayer
.
registerWith
();
}
catch
(
err
)
{
print
(
'`video_player_android` threw an error:
$err
. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
}
else
if
(
Platform
.
isIOS
)
{
try
{
ImagePickerIOS
.
registerWith
();
}
catch
(
err
)
{
print
(
'`image_picker_ios` threw an error:
$err
. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try
{
PathProviderFoundation
.
registerWith
();
}
catch
(
err
)
{
print
(
'`path_provider_foundation` threw an error:
$err
. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try
{
SharedPreferencesFoundation
.
registerWith
();
}
catch
(
err
)
{
print
(
'`shared_preferences_foundation` threw an error:
$err
. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try
{
SqflitePlugin
.
registerWith
();
}
catch
(
err
)
{
print
(
'`sqflite` threw an error:
$err
. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try
{
UrlLauncherIOS
.
registerWith
();
}
catch
(
err
)
{
print
(
'`url_launcher_ios` threw an error:
$err
. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try
{
AVFoundationVideoPlayer
.
registerWith
();
}
catch
(
err
)
{
print
(
'`video_player_avfoundation` threw an error:
$err
. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
}
else
if
(
Platform
.
isLinux
)
{
try
{
FileSelectorLinux
.
registerWith
();
}
catch
(
err
)
{
print
(
'`file_selector_linux` threw an error:
$err
. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try
{
ImagePickerLinux
.
registerWith
();
}
catch
(
err
)
{
print
(
'`image_picker_linux` threw an error:
$err
. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try
{
PathProviderLinux
.
registerWith
();
}
catch
(
err
)
{
print
(
'`path_provider_linux` threw an error:
$err
. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try
{
SharedPreferencesLinux
.
registerWith
();
}
catch
(
err
)
{
print
(
'`shared_preferences_linux` threw an error:
$err
. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try
{
UrlLauncherLinux
.
registerWith
();
}
catch
(
err
)
{
print
(
'`url_launcher_linux` threw an error:
$err
. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
}
else
if
(
Platform
.
isMacOS
)
{
try
{
FileSelectorMacOS
.
registerWith
();
}
catch
(
err
)
{
print
(
'`file_selector_macos` threw an error:
$err
. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try
{
ImagePickerMacOS
.
registerWith
();
}
catch
(
err
)
{
print
(
'`image_picker_macos` threw an error:
$err
. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try
{
PathProviderFoundation
.
registerWith
();
}
catch
(
err
)
{
print
(
'`path_provider_foundation` threw an error:
$err
. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try
{
SharedPreferencesFoundation
.
registerWith
();
}
catch
(
err
)
{
print
(
'`shared_preferences_foundation` threw an error:
$err
. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try
{
SqflitePlugin
.
registerWith
();
}
catch
(
err
)
{
print
(
'`sqflite` threw an error:
$err
. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try
{
UrlLauncherMacOS
.
registerWith
();
}
catch
(
err
)
{
print
(
'`url_launcher_macos` threw an error:
$err
. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
}
else
if
(
Platform
.
isWindows
)
{
try
{
FileSelectorWindows
.
registerWith
();
}
catch
(
err
)
{
print
(
'`file_selector_windows` threw an error:
$err
. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try
{
ImagePickerWindows
.
registerWith
();
}
catch
(
err
)
{
print
(
'`image_picker_windows` threw an error:
$err
. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try
{
PathProviderWindows
.
registerWith
();
}
catch
(
err
)
{
print
(
'`path_provider_windows` threw an error:
$err
. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try
{
SharedPreferencesWindows
.
registerWith
();
}
catch
(
err
)
{
print
(
'`shared_preferences_windows` threw an error:
$err
. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try
{
UrlLauncherWindows
.
registerWith
();
}
catch
(
err
)
{
print
(
'`url_launcher_windows` threw an error:
$err
. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
}
}
}
.dart_tool/package_config.json
View file @
297be4e6
This diff is collapsed.
Click to expand it.
.dart_tool/package_config_subset
View file @
297be4e6
This diff is collapsed.
Click to expand it.
.dart_tool/version
View file @
297be4e6
3.10.1
\ No newline at end of file
3.19.6
\ No newline at end of file
.flutter-plugins
View file @
297be4e6
# This is a generated file; do not edit or check into version control.
cloud_firestore=
/Users/avishkanew/.pub-cache/hosted/pub.dev/cloud_firestore-4.13.6/
cloud_firestore_web=
/Users/avishkanew/.pub-cache/hosted/pub.dev/cloud_firestore_web-3.8.10/
file_selector_linux=
/Users/avishkanew/.pub-cache/hosted/pub.dev/file_selector_linux-0.9.2+1/
file_selector_macos=
/Users/avishkanew/.pub-cache/hosted/pub.dev/file_selector_macos-0.9.3+3/
file_selector_windows=
/Users/avishkanew/.pub-cache/hosted/pub.dev/file_selector_windows-0.9.3+1/
firebase_auth=
/Users/avishkanew/.pub-cache/hosted/pub.dev/firebase_auth-4.15.3/
firebase_auth_web=
/Users/avishkanew/.pub-cache/hosted/pub.dev/firebase_auth_web-5.8.12/
firebase_core=
/Users/avishkanew/.pub-cache/hosted/pub.dev/firebase_core-2.24.2/
firebase_core_web=
/Users/avishkanew/.pub-cache/hosted/pub.dev/firebase_core_web-2.10.0/
firebase_storage=
/Users/avishkanew/.pub-cache/hosted/pub.dev/firebase_storage-11.6.0/
firebase_storage_web=
/Users/avishkanew/.pub-cache/hosted/pub.dev/firebase_storage_web-3.6.17/
flutter_plugin_android_lifecycle=
/Users/avishkanew/.pub-cache/hosted/pub.dev/flutter_plugin_android_lifecycle-2.0.17/
image_picker=
/Users/avishkanew/.pub-cache/hosted/pub.dev/image_picker-1.0.7/
image_picker_android=
/Users/avishkanew/.pub-cache/hosted/pub.dev/image_picker_android-0.8.9+3/
image_picker_for_web=
/Users/avishkanew/.pub-cache/hosted/pub.dev/image_picker_for_web-2.2.0/
image_picker_ios=
/Users/avishkanew/.pub-cache/hosted/pub.dev/image_picker_ios-0.8.9+1/
image_picker_linux=
/Users/avishkanew/.pub-cache/hosted/pub.dev/image_picker_linux-0.2.1+1/
image_picker_macos=
/Users/avishkanew/.pub-cache/hosted/pub.dev/image_picker_macos-0.2.1+1/
image_picker_windows=
/Users/avishkanew/.pub-cache/hosted/pub.dev/image_picker_windows-0.2.1+1/
package_info_plus=
/Users/avishkanew/.pub-cache/hosted/pub.dev/package_info_plus-4.2.0/
path_provider=
/Users/avishkanew/.pub-cache/hosted/pub.dev/path_provider-2.1.2/
path_provider_android=
/Users/avishkanew/.pub-cache/hosted/pub.dev/path_provider_android-2.2.2/
path_provider_foundation=
/Users/avishkanew/.pub-cache/hosted/pub.dev/path_provider_foundation-2.3.2/
path_provider_linux=
/Users/avishkanew/.pub-cache/hosted/pub.dev/path_provider_linux-2.2.1/
path_provider_windows=
/Users/avishkanew/.pub-cache/hosted/pub.dev/path_provider_windows-2.2.1/
rive_common=
/Users/avishkanew/.pub-cache/hosted/pub.dev/rive_common-0.2.7/
shared_preferences=
/Users/avishkanew/.pub-cache/hosted/pub.dev/shared_preferences-2.2.2/
shared_preferences_android=
/Users/avishkanew/.pub-cache/hosted/pub.dev/shared_preferences_android-2.2.1/
shared_preferences_foundation=
/Users/avishkanew/.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.3.5/
shared_preferences_linux=
/Users/avishkanew/.pub-cache/hosted/pub.dev/shared_preferences_linux-2.3.2/
shared_preferences_web=
/Users/avishkanew/.pub-cache/hosted/pub.dev/shared_preferences_web-2.2.1/
shared_preferences_windows=
/Users/avishkanew/.pub-cache/hosted/pub.dev/shared_preferences_windows-2.3.2/
sqflite=
/Users/avishkanew/.pub-cache/hosted/pub.dev/sqflite-2.3.2/
url_launcher=
/Users/avishkanew/.pub-cache/hosted/pub.dev/url_launcher-6.1.14/
url_launcher_android=
/Users/avishkanew/.pub-cache/hosted/pub.dev/url_launcher_android-6.3.0/
url_launcher_ios=
/Users/avishkanew/.pub-cache/hosted/pub.dev/url_launcher_ios-6.2.4/
url_launcher_linux=
/Users/avishkanew/.pub-cache/hosted/pub.dev/url_launcher_linux-3.1.1/
url_launcher_macos=
/Users/avishkanew/.pub-cache/hosted/pub.dev/url_launcher_macos-3.1.0/
url_launcher_web=
/Users/avishkanew/.pub-cache/hosted/pub.dev/url_launcher_web-2.0.19/
url_launcher_windows=
/Users/avishkanew/.pub-cache/hosted/pub.dev/url_launcher_windows-3.1.1/
video_player=
/Users/avishkanew/.pub-cache/hosted/pub.dev/video_player-2.7.2/
video_player_android=
/Users/avishkanew/.pub-cache/hosted/pub.dev/video_player_android-2.4.11/
video_player_avfoundation=
/Users/avishkanew/.pub-cache/hosted/pub.dev/video_player_avfoundation-2.4.11/
video_player_web=
/Users/avishkanew/.pub-cache/hosted/pub.dev/video_player_web-2.0.17/
wakelock_plus=
/Users/avishkanew/.pub-cache/hosted/pub.dev/wakelock_plus-1.1.4/
cloud_firestore=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cloud_firestore-4.13.6\\
cloud_firestore_web=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cloud_firestore_web-3.8.10\\
file_selector_linux=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file_selector_linux-0.9.2+1\\
file_selector_macos=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file_selector_macos-0.9.3+3\\
file_selector_windows=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file_selector_windows-0.9.3+1\\
firebase_auth=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\firebase_auth-4.15.3\\
firebase_auth_web=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\firebase_auth_web-5.8.12\\
firebase_core=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\firebase_core-2.24.2\\
firebase_core_web=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\firebase_core_web-2.10.0\\
firebase_storage=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\firebase_storage-11.6.0\\
firebase_storage_web=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\firebase_storage_web-3.6.17\\
flutter_plugin_android_lifecycle=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_plugin_android_lifecycle-2.0.17\\
image_picker=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\image_picker-1.0.7\\
image_picker_android=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\image_picker_android-0.8.9+3\\
image_picker_for_web=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\image_picker_for_web-2.2.0\\
image_picker_ios=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\image_picker_ios-0.8.9+1\\
image_picker_linux=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\image_picker_linux-0.2.1+1\\
image_picker_macos=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\image_picker_macos-0.2.1+1\\
image_picker_windows=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\image_picker_windows-0.2.1+1\\
package_info_plus=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-4.2.0\\
path_provider=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider-2.1.2\\
path_provider_android=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.2.2\\
path_provider_foundation=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.3.2\\
path_provider_linux=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\
path_provider_windows=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.2.1\\
rive_common=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\rive_common-0.2.7\\
shared_preferences=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shared_preferences-2.2.2\\
shared_preferences_android=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shared_preferences_android-2.2.1\\
shared_preferences_foundation=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shared_preferences_foundation-2.3.5\\
shared_preferences_linux=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shared_preferences_linux-2.3.2\\
shared_preferences_web=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shared_preferences_web-2.2.1\\
shared_preferences_windows=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shared_preferences_windows-2.3.2\\
sqflite=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite-2.3.2\\
url_launcher=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.1.14\\
url_launcher_android=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.0\\
url_launcher_ios=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.2.4\\
url_launcher_linux=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.1.1\\
url_launcher_macos=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.1.0\\
url_launcher_web=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_web-2.0.19\\
url_launcher_windows=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.1\\
video_player=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\video_player-2.7.2\\
video_player_android=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\video_player_android-2.4.11\\
video_player_avfoundation=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\video_player_avfoundation-2.4.11\\
video_player_web=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\video_player_web-2.0.17\\
wakelock_plus=
C:\\Users\\malka\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\wakelock_plus-1.1.4\\
.flutter-plugins-dependencies
View file @
297be4e6
This diff is collapsed.
Click to expand it.
build/f5594b638e9d3f0189529986a6285d2e/_composite.stamp
deleted
100644 → 0
View file @
bdffde06
{"inputs":[],"outputs":[]}
\ No newline at end of file
build/f5594b638e9d3f0189529986a6285d2e/gen_dart_plugin_registrant.stamp
deleted
100644 → 0
View file @
bdffde06
{"inputs":["/Users/avishkanew/Desktop/Avishk678/monitoring-and-recommendations-for-early-childhood-development/.dart_tool/package_config_subset"],"outputs":["/Users/avishkanew/Desktop/Avishk678/monitoring-and-recommendations-for-early-childhood-development/.dart_tool/flutter_build/dart_plugin_registrant.dart"]}
\ No newline at end of file
build/f5594b638e9d3f0189529986a6285d2e/gen_localizations.stamp
deleted
100644 → 0
View file @
bdffde06
{"inputs":[],"outputs":[]}
\ No newline at end of file
lib/game2/song_tales.dart
View file @
297be4e6
...
...
@@ -123,8 +123,8 @@ class LevelScreen extends StatelessWidget {
},
child:
Text
(
'Quit Game'
),
style:
ElevatedButton
.
styleFrom
(
primary:
Color
.
fromARGB
(
255
,
231
,
65
,
43
)
,
onPrimary:
Colors
.
white
,
foregroundColor:
Colors
.
white
,
backgroundColor:
Color
.
fromARGB
(
255
,
231
,
65
,
43
)
,
),
),
SizedBox
(
height:
40
),
...
...
pubspec.lock
View file @
297be4e6
...
...
@@ -141,10 +141,10 @@ packages:
dependency: transitive
description:
name: collection
sha256:
"4a07be6cb69c84d677a6c3096fcf960cc3285a8330b4603e0d463d15d9bd934c"
sha256:
ee67cb0715911d28db6bf4af1026078bd6f0128b07a5f66fb2ed94ec6783c09a
url: "https://pub.dev"
source: hosted
version: "1.1
7.1
"
version: "1.1
8.0
"
confetti:
dependency: "direct main"
description:
...
...
@@ -472,6 +472,30 @@ packages:
url: "https://pub.dev"
source: hosted
version: "0.6.7"
leak_tracker:
dependency: transitive
description:
name: leak_tracker
sha256: "78eb209deea09858f5269f5a5b02be4049535f568c07b275096836f01ea323fa"
url: "https://pub.dev"
source: hosted
version: "10.0.0"
leak_tracker_flutter_testing:
dependency: transitive
description:
name: leak_tracker_flutter_testing
sha256: b46c5e37c19120a8a01918cfaf293547f47269f7cb4b0058f21531c2465d6ef0
url: "https://pub.dev"
source: hosted
version: "2.0.1"
leak_tracker_testing:
dependency: transitive
description:
name: leak_tracker_testing
sha256: a597f72a664dbd293f3bfc51f9ba69816f84dcd403cdac7066cb3f6003f3ab47
url: "https://pub.dev"
source: hosted
version: "2.0.1"
lints:
dependency: transitive
description:
...
...
@@ -492,26 +516,26 @@ packages:
dependency: transitive
description:
name: matcher
sha256:
"6501fbd55da300384b768785b83e5ce66991266cec21af89ab9ae7f5ce1c4cbb"
sha256:
d2323aa2060500f906aa31a895b4030b6da3ebdcc5619d14ce1aada65cd161cb
url: "https://pub.dev"
source: hosted
version: "0.12.1
5
"
version: "0.12.1
6+1
"
material_color_utilities:
dependency: transitive
description:
name: material_color_utilities
sha256:
d92141dc6fe1dad30722f9aa826c7fbc896d021d792f80678280601aff8cf724
sha256:
"0e0a020085b65b6083975e499759762399b4475f766c21668c4ecca34ea74e5a"
url: "https://pub.dev"
source: hosted
version: "0.
2
.0"
version: "0.
8
.0"
meta:
dependency: transitive
description:
name: meta
sha256:
"3c74dbf8763d36539f114c799d8a2d87343b5067e9d796ca22b5eb8437090ee3"
sha256:
d584fa6707a52763a52446f02cc621b077888fb63b93bbcb1143a7be5a0c0c04
url: "https://pub.dev"
source: hosted
version: "1.
9.1
"
version: "1.
11.0
"
mime:
dependency: transitive
description:
...
...
@@ -556,10 +580,10 @@ packages:
dependency: transitive
description:
name: path
sha256: "
8829d8a55c13fc0e37127c29fedf290c102f4e40ae94ada574091fe0ff96c917
"
sha256: "
087ce49c3f0dc39180befefc60fdb4acd8f8620e5682fe2476afd0b3688bb4af
"
url: "https://pub.dev"
source: hosted
version: "1.
8.3
"
version: "1.
9.0
"
path_provider:
dependency: transitive
description:
...
...
@@ -745,10 +769,10 @@ packages:
dependency: transitive
description:
name: source_span
sha256:
dd904f795d4b4f3b870833847c461801f6750a9fa8e61ea5ac53f9422b31f250
sha256:
"53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c"
url: "https://pub.dev"
source: hosted
version: "1.
9.1
"
version: "1.
10.0
"
sprintf:
dependency: transitive
description:
...
...
@@ -777,18 +801,18 @@ packages:
dependency: transitive
description:
name: stack_trace
sha256:
c3c7d8edb15bee7f0f74debd4b9c5f3c2ea86766fe4178eb2a18eb30a0bdaed5
sha256:
"73713990125a6d93122541237550ee3352a2d84baad52d375a4cad2eb9b7ce0b"
url: "https://pub.dev"
source: hosted
version: "1.11.
0
"
version: "1.11.
1
"
stream_channel:
dependency: transitive
description:
name: stream_channel
sha256:
"83615bee9045c1d322bbbd1ba209b7a749c2cbcdcb3fdd1df8eb488b3279c1c8"
sha256:
ba2aa5d8cc609d96bbb2899c28934f9e1af5cddbd60a827822ea467161eb54e7
url: "https://pub.dev"
source: hosted
version: "2.1.
1
"
version: "2.1.
2
"
string_scanner:
dependency: transitive
description:
...
...
@@ -825,10 +849,10 @@ packages:
dependency: transitive
description:
name: test_api
sha256:
eb6ac1540b26de412b3403a163d919ba86f6a973fe6cc50ae3541b80092fdcfb
sha256:
"5c2f730018264d276c20e4f1503fd1308dfbbae39ec8ee63c5236311ac06954b"
url: "https://pub.dev"
source: hosted
version: "0.
5
.1"
version: "0.
6
.1"
typed_data:
dependency: transitive
description:
...
...
@@ -957,6 +981,14 @@ packages:
url: "https://pub.dev"
source: hosted
version: "2.0.17"
vm_service:
dependency: transitive
description:
name: vm_service
sha256: b3d56ff4341b8f182b96aceb2fa20e3dcb336b9f867bc0eafc0de10f1048e957
url: "https://pub.dev"
source: hosted
version: "13.0.0"
wakelock_plus:
dependency: transitive
description:
...
...
@@ -998,5 +1030,5 @@ packages:
source: hosted
version: "6.3.0"
sdks:
dart: ">=3.
0.1
<4.0.0"
dart: ">=3.
2.0-0
<4.0.0"
flutter: ">=3.10.0"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment