User reported: the 'output device' picker only listed AirPlay
destinations (other iPhones / AirPlay speakers / AppleTV) and not
the speaker / iPhone receiver / AirPods / wired headset choices.
Root cause: audio_router 1.1.1's iOS path uses AVRoutePickerView,
which is Apple's **AirPlay** picker UI \u2014 by design it only lists
AirPlay-eligible output destinations, NOT the input/output route
choices we need (speaker vs receiver vs Bluetooth HFP vs wired).
AVRoutePickerView is the right UI for 'cast audio elsewhere'; for
'pick how I hear / talk' (VoIP) the right primitive is direct
AVAudioSession calls.
Fix: replace audio_router with audio_session 0.2.3 (Ryan Heise,
verified publisher, 865k downloads, MIT). audio_session exposes:
* AVAudioSession.availableInputs \u2014 enumerate every real input
port: builtInMic, bluetoothHfp, bluetoothA2dp, headsetMic
(wired), usbAudio, carAudio, airPlay.
* AVAudioSession.currentRoute \u2014 .inputs + .outputs of the
active route.
* AVAudioSession.setPreferredInput(port) \u2014 switch the input
(HFP / wired / USB / car audio also move output to themselves).
* AVAudioSession.overrideOutputAudioPort(.speaker | .none) \u2014
toggle built-in speakerphone vs receiver/earpiece.
* AVAudioSession.routeChangeStream \u2014 live notifications when
the user plugs / unplugs / connects a device while the picker
is open.
This is exactly the same primitive Discord, WhatsApp, FaceTime
use for their VoIP audio chooser. No native UI plugin needed.
New widgets in voice_compact.dart:
* _AudioOutputTile: shows the active output port name (Speaker /
iPhone / AirPods / 'Phil's Wired Headset' / etc.) with the
matching icon. Subscribes to routeChangeStream for live
updates. Tap opens _AudioOutputPickerSheet.
* _AudioOutputPickerSheet: bottom sheet with 'Choose audio' title
and a Discord-style list:
- Speaker (volume_up)
- iPhone (phone_in_talk; the receiver/earpiece)
- <BT name> (bluetooth_audio)
- <Wired headset> (headset)
- <USB / Car> (usb / directions_car)
Selected row is highlighted + has a check mark. Tap routes:
- Speaker -> overrideOutputAudioPort(.speaker)
- iPhone -> overrideOutputAudioPort(.none) + setPreferredInput(builtInMic)
- External -> overrideOutputAudioPort(.none) + setPreferredInput(port)
* _PickerRow: shared row widget with selected/check styling.
AppDelegate.swift is unchanged: the manual AVAudioSession
.setCategory(playAndRecord / .voiceChat) we already do at launch
(0466000 / 4ee2b38) is fully compatible with audio_session \u2014 the
plugin only adds Dart-side accessors over the same underlying
AVAudioSession singleton.
Removed l10n keys not used anymore (audioRouteUsb was already gone).
Kept audioRouteSpeaker / Receiver / Bluetooth / WiredHeadset /
CarAudio / Airplay / Unknown \u2014 all still used by the new picker.
flutter analyze: 6 pre-existing Radio deprecation infos (unchanged).
flutter build ios --release --no-codesign: 54.9 s, Runner.app
30.4 MB (+200 KB vs audio_router build).
760 lines
21 KiB
Plaintext
760 lines
21 KiB
Plaintext
# Generated by pub
|
|
# See https://dart.dev/tools/pub/glossary#lockfile
|
|
packages:
|
|
_fe_analyzer_shared:
|
|
dependency: transitive
|
|
description:
|
|
name: _fe_analyzer_shared
|
|
sha256: "8d7ff3948166b8ec5da0fbb5962000926b8e02f2ed9b3e51d1738905fbd4c98d"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "93.0.0"
|
|
analyzer:
|
|
dependency: transitive
|
|
description:
|
|
name: analyzer
|
|
sha256: de7148ed2fcec579b19f122c1800933dfa028f6d9fd38a152b04b1516cec120b
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "10.0.1"
|
|
args:
|
|
dependency: transitive
|
|
description:
|
|
name: args
|
|
sha256: d0481093c50b1da8910eb0bb301626d4d8eb7284aa739614d2b394ee09e3ea04
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "2.7.0"
|
|
async:
|
|
dependency: transitive
|
|
description:
|
|
name: async
|
|
sha256: e2eb0491ba5ddb6177742d2da23904574082139b07c1e33b8503b9f46f3e1a37
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "2.13.1"
|
|
audio_session:
|
|
dependency: "direct main"
|
|
description:
|
|
name: audio_session
|
|
sha256: "7217b229db57cc4dc577a8abb56b7429a5a212b978517a5be578704bfe5e568b"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "0.2.3"
|
|
boolean_selector:
|
|
dependency: transitive
|
|
description:
|
|
name: boolean_selector
|
|
sha256: "8aab1771e1243a5063b8b0ff68042d67334e3feab9e95b9490f9a6ebf73b42ea"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "2.1.2"
|
|
build:
|
|
dependency: transitive
|
|
description:
|
|
name: build
|
|
sha256: a156715e7cd728130c592f30552575908aae5b100005fbc1f0fb16b3c03a3d10
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "4.0.6"
|
|
build_cli_annotations:
|
|
dependency: transitive
|
|
description:
|
|
name: build_cli_annotations
|
|
sha256: e563c2e01de8974566a1998410d3f6f03521788160a02503b0b1f1a46c7b3d95
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "2.1.1"
|
|
build_config:
|
|
dependency: transitive
|
|
description:
|
|
name: build_config
|
|
sha256: "4070d2a59f8eec34c97c86ceb44403834899075f66e8a9d59706f8e7834f6f71"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "1.3.0"
|
|
build_daemon:
|
|
dependency: transitive
|
|
description:
|
|
name: build_daemon
|
|
sha256: bf05f6e12cfea92d3c09308d7bcdab1906cd8a179b023269eed00c071004b957
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "4.1.1"
|
|
build_runner:
|
|
dependency: "direct dev"
|
|
description:
|
|
name: build_runner
|
|
sha256: "1523ce62448ebac2c15a8ba5fbad8acac169788658a7dd2a1c2d9c2a9318b9a6"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "2.15.0"
|
|
built_collection:
|
|
dependency: transitive
|
|
description:
|
|
name: built_collection
|
|
sha256: "376e3dd27b51ea877c28d525560790aee2e6fbb5f20e2f85d5081027d94e2100"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "5.1.1"
|
|
built_value:
|
|
dependency: transitive
|
|
description:
|
|
name: built_value
|
|
sha256: "34e4067d30ce212937df995f03b69992eea683539ceeac7f679a1f1eba055b56"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "8.12.6"
|
|
characters:
|
|
dependency: transitive
|
|
description:
|
|
name: characters
|
|
sha256: faf38497bda5ead2a8c7615f4f7939df04333478bf32e4173fcb06d428b5716b
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "1.4.1"
|
|
checked_yaml:
|
|
dependency: transitive
|
|
description:
|
|
name: checked_yaml
|
|
sha256: "959525d3162f249993882720d52b7e0c833978df229be20702b33d48d91de70f"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "2.0.4"
|
|
clock:
|
|
dependency: transitive
|
|
description:
|
|
name: clock
|
|
sha256: fddb70d9b5277016c77a80201021d40a2247104d9f4aa7bab7157b7e3f05b84b
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "1.1.2"
|
|
code_assets:
|
|
dependency: transitive
|
|
description:
|
|
name: code_assets
|
|
sha256: "83ccdaa064c980b5596c35dd64a8d3ecc68620174ab9b90b6343b753aa721687"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "1.0.0"
|
|
collection:
|
|
dependency: transitive
|
|
description:
|
|
name: collection
|
|
sha256: "2f5709ae4d3d59dd8f7cd309b4e023046b57d8a6c82130785d2b0e5868084e76"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "1.19.1"
|
|
connectivity_plus:
|
|
dependency: "direct main"
|
|
description:
|
|
name: connectivity_plus
|
|
sha256: b5e72753cf63becce2c61fd04dfe0f1c430cc5278b53a1342dc5ad839eab29ec
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "6.1.5"
|
|
connectivity_plus_platform_interface:
|
|
dependency: transitive
|
|
description:
|
|
name: connectivity_plus_platform_interface
|
|
sha256: "3c09627c536d22fd24691a905cdd8b14520de69da52c7a97499c8be5284a32ed"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "2.1.0"
|
|
convert:
|
|
dependency: transitive
|
|
description:
|
|
name: convert
|
|
sha256: b30acd5944035672bc15c6b7a8b47d773e41e2f17de064350988c5d02adb1c68
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "3.1.2"
|
|
crypto:
|
|
dependency: transitive
|
|
description:
|
|
name: crypto
|
|
sha256: c8ea0233063ba03258fbcf2ca4d6dadfefe14f02fab57702265467a19f27fadf
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "3.0.7"
|
|
cupertino_icons:
|
|
dependency: "direct main"
|
|
description:
|
|
name: cupertino_icons
|
|
sha256: "41e005c33bd814be4d3096aff55b1908d419fde52ca656c8c47719ec745873cd"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "1.0.9"
|
|
dart_style:
|
|
dependency: transitive
|
|
description:
|
|
name: dart_style
|
|
sha256: "29f7ecc274a86d32920b1d9cfc7502fa87220da41ec60b55f329559d5732e2b2"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "3.1.7"
|
|
dbus:
|
|
dependency: transitive
|
|
description:
|
|
name: dbus
|
|
sha256: d0c98dcd4f5169878b6cf8f6e0a52403a9dff371a3e2f019697accbf6f44a270
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "0.7.12"
|
|
fake_async:
|
|
dependency: transitive
|
|
description:
|
|
name: fake_async
|
|
sha256: "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "1.3.3"
|
|
ffi:
|
|
dependency: transitive
|
|
description:
|
|
name: ffi
|
|
sha256: "6d7fd89431262d8f3125e81b50d3847a091d846eafcd4fdb88dd06f36d705a45"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "2.2.0"
|
|
file:
|
|
dependency: transitive
|
|
description:
|
|
name: file
|
|
sha256: a3b4f84adafef897088c160faf7dfffb7696046cb13ae90b508c2cbc95d3b8d4
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "7.0.1"
|
|
fixnum:
|
|
dependency: transitive
|
|
description:
|
|
name: fixnum
|
|
sha256: b6dc7065e46c974bc7c5f143080a6764ec7a4be6da1285ececdc37be96de53be
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "1.1.1"
|
|
flutter:
|
|
dependency: "direct main"
|
|
description: flutter
|
|
source: sdk
|
|
version: "0.0.0"
|
|
flutter_lints:
|
|
dependency: "direct dev"
|
|
description:
|
|
name: flutter_lints
|
|
sha256: "3105dc8492f6183fb076ccf1f351ac3d60564bff92e20bfc4af9cc1651f4e7e1"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "6.0.0"
|
|
flutter_localizations:
|
|
dependency: "direct main"
|
|
description: flutter
|
|
source: sdk
|
|
version: "0.0.0"
|
|
flutter_rust_bridge:
|
|
dependency: "direct main"
|
|
description:
|
|
name: flutter_rust_bridge
|
|
sha256: e87d6b9ee934dcd24a128ccb2bd91905d2d5fe5c06245d6a8f5477d4907a437a
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "2.12.0"
|
|
flutter_test:
|
|
dependency: "direct dev"
|
|
description: flutter
|
|
source: sdk
|
|
version: "0.0.0"
|
|
flutter_web_plugins:
|
|
dependency: transitive
|
|
description: flutter
|
|
source: sdk
|
|
version: "0.0.0"
|
|
freezed:
|
|
dependency: "direct dev"
|
|
description:
|
|
name: freezed
|
|
sha256: f23ea33b3863f119b58ed1b586e881a46bd28715ddcc4dbc33104524e3434131
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "3.2.5"
|
|
freezed_annotation:
|
|
dependency: "direct main"
|
|
description:
|
|
name: freezed_annotation
|
|
sha256: "7294967ff0a6d98638e7acb774aac3af2550777accd8149c90af5b014e6d44d8"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "3.1.0"
|
|
glob:
|
|
dependency: transitive
|
|
description:
|
|
name: glob
|
|
sha256: c3f1ee72c96f8f78935e18aa8cecced9ab132419e8625dc187e1c2408efc20de
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "2.1.3"
|
|
graphs:
|
|
dependency: transitive
|
|
description:
|
|
name: graphs
|
|
sha256: "741bbf84165310a68ff28fe9e727332eef1407342fca52759cb21ad8177bb8d0"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "2.3.2"
|
|
hooks:
|
|
dependency: transitive
|
|
description:
|
|
name: hooks
|
|
sha256: "025f060e86d2d4c3c47b56e33caf7f93bf9283340f26d23424ebcfccf34f621e"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "1.0.3"
|
|
http_multi_server:
|
|
dependency: transitive
|
|
description:
|
|
name: http_multi_server
|
|
sha256: aa6199f908078bb1c5efb8d8638d4ae191aac11b311132c3ef48ce352fb52ef8
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "3.2.2"
|
|
http_parser:
|
|
dependency: transitive
|
|
description:
|
|
name: http_parser
|
|
sha256: "178d74305e7866013777bab2c3d8726205dc5a4dd935297175b19a23a2e66571"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "4.1.2"
|
|
intl:
|
|
dependency: "direct main"
|
|
description:
|
|
name: intl
|
|
sha256: "3df61194eb431efc39c4ceba583b95633a403f46c9fd341e550ce0bfa50e9aa5"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "0.20.2"
|
|
io:
|
|
dependency: transitive
|
|
description:
|
|
name: io
|
|
sha256: dfd5a80599cf0165756e3181807ed3e77daf6dd4137caaad72d0b7931597650b
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "1.0.5"
|
|
jni:
|
|
dependency: transitive
|
|
description:
|
|
name: jni
|
|
sha256: c2230682d5bc2362c1c9e8d3c7f406d9cbba23ab3f2e203a025dd47e0fb2e68f
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "1.0.0"
|
|
jni_flutter:
|
|
dependency: transitive
|
|
description:
|
|
name: jni_flutter
|
|
sha256: "8b59e590786050b1cd866677dddaf76b1ade5e7bc751abe04b86e84d379d3ba6"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "1.0.1"
|
|
json_annotation:
|
|
dependency: transitive
|
|
description:
|
|
name: json_annotation
|
|
sha256: cb09e7dac6210041fad964ed7fbee004f14258b4eca4040f72d1234062ace4c8
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "4.11.0"
|
|
leak_tracker:
|
|
dependency: transitive
|
|
description:
|
|
name: leak_tracker
|
|
sha256: "33e2e26bdd85a0112ec15400c8cbffea70d0f9c3407491f672a2fad47915e2de"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "11.0.2"
|
|
leak_tracker_flutter_testing:
|
|
dependency: transitive
|
|
description:
|
|
name: leak_tracker_flutter_testing
|
|
sha256: "1dbc140bb5a23c75ea9c4811222756104fbcd1a27173f0c34ca01e16bea473c1"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "3.0.10"
|
|
leak_tracker_testing:
|
|
dependency: transitive
|
|
description:
|
|
name: leak_tracker_testing
|
|
sha256: "8d5a2d49f4a66b49744b23b018848400d23e54caf9463f4eb20df3eb8acb2eb1"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "3.0.2"
|
|
lints:
|
|
dependency: transitive
|
|
description:
|
|
name: lints
|
|
sha256: "12f842a479589fea194fe5c5a3095abc7be0c1f2ddfa9a0e76aed1dbd26a87df"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "6.1.0"
|
|
logging:
|
|
dependency: transitive
|
|
description:
|
|
name: logging
|
|
sha256: c8245ada5f1717ed44271ed1c26b8ce85ca3228fd2ffdb75468ab01979309d61
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "1.3.0"
|
|
matcher:
|
|
dependency: transitive
|
|
description:
|
|
name: matcher
|
|
sha256: dc0b7dc7651697ea4ff3e69ef44b0407ea32c487a39fff6a4004fa585e901861
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "0.12.19"
|
|
material_color_utilities:
|
|
dependency: transitive
|
|
description:
|
|
name: material_color_utilities
|
|
sha256: "9c337007e82b1889149c82ed242ed1cb24a66044e30979c44912381e9be4c48b"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "0.13.0"
|
|
meta:
|
|
dependency: transitive
|
|
description:
|
|
name: meta
|
|
sha256: "23f08335362185a5ea2ad3a4e597f1375e78bce8a040df5c600c8d3552ef2394"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "1.17.0"
|
|
mime:
|
|
dependency: transitive
|
|
description:
|
|
name: mime
|
|
sha256: "41a20518f0cb1256669420fdba0cd90d21561e560ac240f26ef8322e45bb7ed6"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "2.0.0"
|
|
native_toolchain_c:
|
|
dependency: transitive
|
|
description:
|
|
name: native_toolchain_c
|
|
sha256: "6ba77bb18063eebe9de401f5e6437e95e1438af0a87a3a39084fbd37c90df572"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "0.17.6"
|
|
nm:
|
|
dependency: transitive
|
|
description:
|
|
name: nm
|
|
sha256: "2c9aae4127bdc8993206464fcc063611e0e36e72018696cd9631023a31b24254"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "0.5.0"
|
|
objective_c:
|
|
dependency: transitive
|
|
description:
|
|
name: objective_c
|
|
sha256: "100a1c87616ab6ed41ec263b083c0ef3261ee6cd1dc3b0f35f8ddfa4f996fe52"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "9.3.0"
|
|
package_config:
|
|
dependency: transitive
|
|
description:
|
|
name: package_config
|
|
sha256: f096c55ebb7deb7e384101542bfba8c52696c1b56fca2eb62827989ef2353bbc
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "2.2.0"
|
|
path:
|
|
dependency: transitive
|
|
description:
|
|
name: path
|
|
sha256: "75cca69d1490965be98c73ceaea117e8a04dd21217b37b292c9ddbec0d955bc5"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "1.9.1"
|
|
path_provider:
|
|
dependency: "direct main"
|
|
description:
|
|
name: path_provider
|
|
sha256: "50c5dd5b6e1aaf6fb3a78b33f6aa3afca52bf903a8a5298f53101fdaee55bbcd"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "2.1.5"
|
|
path_provider_android:
|
|
dependency: transitive
|
|
description:
|
|
name: path_provider_android
|
|
sha256: "69cbd515a62b94d32a7944f086b2f82b4ac40a1d45bebfc00813a430ab2dabcd"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "2.3.1"
|
|
path_provider_foundation:
|
|
dependency: transitive
|
|
description:
|
|
name: path_provider_foundation
|
|
sha256: "2a376b7d6392d80cd3705782d2caa734ca4727776db0b6ec36ef3f1855197699"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "2.6.0"
|
|
path_provider_linux:
|
|
dependency: transitive
|
|
description:
|
|
name: path_provider_linux
|
|
sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "2.2.1"
|
|
path_provider_platform_interface:
|
|
dependency: transitive
|
|
description:
|
|
name: path_provider_platform_interface
|
|
sha256: "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "2.1.2"
|
|
path_provider_windows:
|
|
dependency: transitive
|
|
description:
|
|
name: path_provider_windows
|
|
sha256: bd6f00dbd873bfb70d0761682da2b3a2c2fccc2b9e84c495821639601d81afe7
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "2.3.0"
|
|
petitparser:
|
|
dependency: transitive
|
|
description:
|
|
name: petitparser
|
|
sha256: "91bd59303e9f769f108f8df05e371341b15d59e995e6806aefab827b58336675"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "7.0.2"
|
|
platform:
|
|
dependency: transitive
|
|
description:
|
|
name: platform
|
|
sha256: "5d6b1b0036a5f331ebc77c850ebc8506cbc1e9416c27e59b439f917a902a4984"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "3.1.6"
|
|
plugin_platform_interface:
|
|
dependency: transitive
|
|
description:
|
|
name: plugin_platform_interface
|
|
sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "2.1.8"
|
|
pool:
|
|
dependency: transitive
|
|
description:
|
|
name: pool
|
|
sha256: "978783255c543aa3586a1b3c21f6e9d720eb315376a915872c61ef8b5c20177d"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "1.5.2"
|
|
pub_semver:
|
|
dependency: transitive
|
|
description:
|
|
name: pub_semver
|
|
sha256: "5bfcf68ca79ef689f8990d1160781b4bad40a3bd5e5218ad4076ddb7f4081585"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "2.2.0"
|
|
pubspec_parse:
|
|
dependency: transitive
|
|
description:
|
|
name: pubspec_parse
|
|
sha256: "0560ba233314abbed0a48a2956f7f022cce7c3e1e73df540277da7544cad4082"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "1.5.0"
|
|
record_use:
|
|
dependency: transitive
|
|
description:
|
|
name: record_use
|
|
sha256: "2551bd8eecfe95d14ae75f6021ad0248be5c27f138c2ec12fcb52b500b3ba1ed"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "0.6.0"
|
|
rxdart:
|
|
dependency: transitive
|
|
description:
|
|
name: rxdart
|
|
sha256: "5c3004a4a8dbb94bd4bf5412a4def4acdaa12e12f269737a5751369e12d1a962"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "0.28.0"
|
|
shelf:
|
|
dependency: transitive
|
|
description:
|
|
name: shelf
|
|
sha256: e7dd780a7ffb623c57850b33f43309312fc863fb6aa3d276a754bb299839ef12
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "1.4.2"
|
|
shelf_web_socket:
|
|
dependency: transitive
|
|
description:
|
|
name: shelf_web_socket
|
|
sha256: "3632775c8e90d6c9712f883e633716432a27758216dfb61bd86a8321c0580925"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "3.0.0"
|
|
sky_engine:
|
|
dependency: transitive
|
|
description: flutter
|
|
source: sdk
|
|
version: "0.0.0"
|
|
source_gen:
|
|
dependency: transitive
|
|
description:
|
|
name: source_gen
|
|
sha256: ec37cc0e6694374cbef59ed79685572c870a54ede6fa30a3e420feb3adffea02
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "4.2.3"
|
|
source_span:
|
|
dependency: transitive
|
|
description:
|
|
name: source_span
|
|
sha256: "56a02f1f4cd1a2d96303c0144c93bd6d909eea6bee6bf5a0e0b685edbd4c47ab"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "1.10.2"
|
|
stack_trace:
|
|
dependency: transitive
|
|
description:
|
|
name: stack_trace
|
|
sha256: "8b27215b45d22309b5cddda1aa2b19bdfec9df0e765f2de506401c071d38d1b1"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "1.12.1"
|
|
stream_channel:
|
|
dependency: transitive
|
|
description:
|
|
name: stream_channel
|
|
sha256: "969e04c80b8bcdf826f8f16579c7b14d780458bd97f56d107d3950fdbeef059d"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "2.1.4"
|
|
stream_transform:
|
|
dependency: transitive
|
|
description:
|
|
name: stream_transform
|
|
sha256: ad47125e588cfd37a9a7f86c7d6356dde8dfe89d071d293f80ca9e9273a33871
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "2.1.1"
|
|
string_scanner:
|
|
dependency: transitive
|
|
description:
|
|
name: string_scanner
|
|
sha256: "921cd31725b72fe181906c6a94d987c78e3b98c2e205b397ea399d4054872b43"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "1.4.1"
|
|
term_glyph:
|
|
dependency: transitive
|
|
description:
|
|
name: term_glyph
|
|
sha256: "7f554798625ea768a7518313e58f83891c7f5024f88e46e7182a4558850a4b8e"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "1.2.2"
|
|
test_api:
|
|
dependency: transitive
|
|
description:
|
|
name: test_api
|
|
sha256: "8161c84903fd860b26bfdefb7963b3f0b68fee7adea0f59ef805ecca346f0c7a"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "0.7.10"
|
|
typed_data:
|
|
dependency: transitive
|
|
description:
|
|
name: typed_data
|
|
sha256: f9049c039ebfeb4cf7a7104a675823cd72dba8297f264b6637062516699fa006
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "1.4.0"
|
|
vector_math:
|
|
dependency: transitive
|
|
description:
|
|
name: vector_math
|
|
sha256: d530bd74fea330e6e364cda7a85019c434070188383e1cd8d9777ee586914c5b
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "2.2.0"
|
|
vm_service:
|
|
dependency: transitive
|
|
description:
|
|
name: vm_service
|
|
sha256: "0016aef94fc66495ac78af5859181e3f3bf2026bd8eecc72b9565601e19ab360"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "15.2.0"
|
|
watcher:
|
|
dependency: transitive
|
|
description:
|
|
name: watcher
|
|
sha256: "1398c9f081a753f9226febe8900fce8f7d0a67163334e1c94a2438339d79d635"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "1.2.1"
|
|
web:
|
|
dependency: transitive
|
|
description:
|
|
name: web
|
|
sha256: "868d88a33d8a87b18ffc05f9f030ba328ffefba92d6c127917a2ba740f9cfe4a"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "1.1.1"
|
|
web_socket:
|
|
dependency: transitive
|
|
description:
|
|
name: web_socket
|
|
sha256: "34d64019aa8e36bf9842ac014bb5d2f5586ca73df5e4d9bf5c936975cae6982c"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "1.0.1"
|
|
web_socket_channel:
|
|
dependency: transitive
|
|
description:
|
|
name: web_socket_channel
|
|
sha256: d645757fb0f4773d602444000a8131ff5d48c9e47adfe9772652dd1a4f2d45c8
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "3.0.3"
|
|
xdg_directories:
|
|
dependency: transitive
|
|
description:
|
|
name: xdg_directories
|
|
sha256: "7a3f37b05d989967cdddcbb571f1ea834867ae2faa29725fd085180e0883aa15"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "1.1.0"
|
|
xml:
|
|
dependency: transitive
|
|
description:
|
|
name: xml
|
|
sha256: "971043b3a0d3da28727e40ed3e0b5d18b742fa5a68665cca88e74b7876d5e025"
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "6.6.1"
|
|
yaml:
|
|
dependency: transitive
|
|
description:
|
|
name: yaml
|
|
sha256: b9da305ac7c39faa3f030eccd175340f968459dae4af175130b3fc47e40d76ce
|
|
url: "https://pub.dev"
|
|
source: hosted
|
|
version: "3.1.3"
|
|
sdks:
|
|
dart: ">=3.11.5 <4.0.0"
|
|
flutter: ">=3.38.4"
|