SafeRouteProject
SafeRoute is a Flutter-based safety companion that combines route guidance, emergency SOS tools, disaster alerts, and community safety reporting to help users travel with more confidence and context
File Explorer
- settings.json
- AndroidManifest.xml
- MainActivity.kt
- launch_background.xml
- launch_background.xml
- ic_launcher.png
- ic_launcher.png
- ic_launcher.png
- ic_launcher.png
- ic_launcher.png
- styles.xml
- styles.xml
- AndroidManifest.xml
- AndroidManifest.xml
- build.gradle.kts
- gradle-wrapper.properties
- .gitignore
- build.gradle.kts
- gradle.properties
- settings.gradle.kts
- AppFrameworkInfo.plist
- Debug.xcconfig
- Release.xcconfig
- Contents.json
- LaunchImage.png
- [email protected]
- [email protected]
- README.md
- LaunchScreen.storyboard
- Main.storyboard
- AppDelegate.swift
- Info.plist
- Runner-Bridging-Header.h
- IDEWorkspaceChecks.plist
- WorkspaceSettings.xcsettings
- contents.xcworkspacedata
- Runner.xcscheme
- project.pbxproj
- IDEWorkspaceChecks.plist
- WorkspaceSettings.xcsettings
- contents.xcworkspacedata
- RunnerTests.swift
- .gitignore
- api_keys.dart
- api_keys.example.dart
- background_service_manager.dart
- notification_service.dart
- app_colors.dart
- app_theme.dart
- custom_button.dart
- custom_text_field.dart
- loading_overlay.dart
- auth_loading_screen.dart
- login_screen.dart
- profile_setup_screen.dart
- user_profile_service.dart
- checkpoint_model.dart
- checkpoint_service.dart
- places_service.dart
- disaster_model.dart
- disaster_service.dart
- emergency_alert_service.dart
- emergency_settings_screen.dart
- shake_detector_service.dart
- voice_emergency_service.dart
- environment_data_service.dart
- environment_model.dart
- directions_service.dart
- home_screen.dart
- safety_model.dart
- safety_rating_screen.dart
- safety_service.dart
- journey_logs_screen.dart
- journey_model.dart
- journey_service.dart
- app_router.dart
- firebase_options.dart
- main.dart
- CMakeLists.txt
- generated_plugin_registrant.cc
- generated_plugin_registrant.h
- generated_plugins.cmake
- CMakeLists.txt
- main.cc
- my_application.cc
- my_application.h
- .gitignore
- CMakeLists.txt
- Flutter-Debug.xcconfig
- Flutter-Release.xcconfig
- GeneratedPluginRegistrant.swift
- 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
- Contents.json
- MainMenu.xib
- AppInfo.xcconfig
- Debug.xcconfig
- Release.xcconfig
- Warnings.xcconfig
- AppDelegate.swift
- DebugProfile.entitlements
- Info.plist
- MainFlutterWindow.swift
- Release.entitlements
- IDEWorkspaceChecks.plist
- Runner.xcscheme
- project.pbxproj
- IDEWorkspaceChecks.plist
- contents.xcworkspacedata
- RunnerTests.swift
- .gitignore
- widget_test.dart
- Icon-192.png
- Icon-512.png
- Icon-maskable-192.png
- Icon-maskable-512.png
- favicon.png
- google_maps_api.example.js
- index.html
- manifest.json
- CMakeLists.txt
- generated_plugin_registrant.cc
- generated_plugin_registrant.h
- generated_plugins.cmake
- app_icon.ico
- CMakeLists.txt
- flutter_window.cpp
- flutter_window.h
- main.cpp
- resource.h
- runner.exe.manifest
- Runner.rc
- utils.cpp
- utils.h
- win32_window.cpp
- win32_window.h
- .gitignore
- CMakeLists.txt
- .gitignore
- .metadata
- analysis_options.yaml
- devtools_options.yaml
- firebase.json
- firestore.indexes.json
- firestore.rules
- LICENSE
- pubspec.lock
- pubspec.yaml
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
flutter pub
View Details ▼
flutter pub
Flutter's package manager.
Note: Packages are available on <https://pub.dev>.
See also: `flutter`.
flutter pub get
Download/Update all packages specified in `pubspec.yaml`:
flutter pub add {{package1 package2 ...}}
Add a package dependency to an app:
flutter pub remove {{package1 package2 ...}}
Remove a package dependency from an app:
flutter
View Details ▼
flutter
Google's free, open source, and cross-platform mobile app SDK.
Some subcommands such as `pub` have their own usage documentation.
flutter create {{project_name}}
Initialize a new Flutter project in a directory of the same name:
flutter doctor
Check if all external tools are correctly installed:
flutter channel {{stable|beta|dev|master}}
List or change Flutter channel:
lib
View Details ▼
lib
The Microsoft Library Manager for creating and managing static libraries of object files.
lib /OUT :{{path\to\library.lib}} {{path\to\file1.obj path\to\file2.obj ...}}
Create a static library from object files:
lib /LIST {{path\to\library.lib}}
List the contents of a library:
lib {{path\to\library.lib}} {{path\to\file.obj}}
Add an object file to an existing library:
