flutter upgrade. fix ui issues.

This commit is contained in:
Christien Rioux 2025-05-23 11:29:05 -04:00
parent 5f68539738
commit 7f49d30d4e
13 changed files with 233 additions and 184 deletions

View file

@ -104,6 +104,7 @@ class _ChatComponentWidgetState extends State<ChatComponentWidget> {
_textEditingController = TextEditingController(); _textEditingController = TextEditingController();
_scrollController = ScrollController(); _scrollController = ScrollController();
_chatStateProcessor = SingleStateProcessor<ChatComponentState>(); _chatStateProcessor = SingleStateProcessor<ChatComponentState>();
_focusNode = FocusNode();
final chatComponentCubit = context.read<ChatComponentCubit>(); final chatComponentCubit = context.read<ChatComponentCubit>();
_chatStateProcessor.follow( _chatStateProcessor.follow(
@ -116,6 +117,7 @@ class _ChatComponentWidgetState extends State<ChatComponentWidget> {
void dispose() { void dispose() {
unawaited(_chatStateProcessor.close()); unawaited(_chatStateProcessor.close());
_focusNode.dispose();
_chatController.dispose(); _chatController.dispose();
_scrollController.dispose(); _scrollController.dispose();
_textEditingController.dispose(); _textEditingController.dispose();
@ -279,6 +281,7 @@ class _ChatComponentWidgetState extends State<ChatComponentWidget> {
// Composer builder // Composer builder
composerBuilder: (ctx) => VcComposerWidget( composerBuilder: (ctx) => VcComposerWidget(
autofocus: true, autofocus: true,
focusNode: _focusNode,
textInputAction: isAnyMobile textInputAction: isAnyMobile
? TextInputAction.newline ? TextInputAction.newline
: TextInputAction.send, : TextInputAction.send,
@ -397,6 +400,8 @@ class _ChatComponentWidgetState extends State<ChatComponentWidget> {
} }
void _handleSendPressed(ChatComponentCubit chatComponentCubit, String text) { void _handleSendPressed(ChatComponentCubit chatComponentCubit, String text) {
_focusNode.requestFocus();
if (text.startsWith('/')) { if (text.startsWith('/')) {
chatComponentCubit.runCommand(text); chatComponentCubit.runCommand(text);
return; return;
@ -489,4 +494,5 @@ class _ChatComponentWidgetState extends State<ChatComponentWidget> {
late final TextEditingController _textEditingController; late final TextEditingController _textEditingController;
late final ScrollController _scrollController; late final ScrollController _scrollController;
late final SingleStateProcessor<ChatComponentState> _chatStateProcessor; late final SingleStateProcessor<ChatComponentState> _chatStateProcessor;
late final FocusNode _focusNode;
} }

View file

@ -112,8 +112,8 @@ class PasteInvitationDialogState extends State<PasteInvitationDialog> {
constraints: const BoxConstraints(maxHeight: 200), constraints: const BoxConstraints(maxHeight: 200),
child: TextField( child: TextField(
enabled: !dialogState.isValidating, enabled: !dialogState.isValidating,
onChanged: (text) async => autofocus: true,
_onPasteChanged(text, validateInviteData), onChanged: (text) => _onPasteChanged(text, validateInviteData),
style: monoStyle, style: monoStyle,
keyboardType: TextInputType.multiline, keyboardType: TextInputType.multiline,
maxLines: null, maxLines: null,
@ -129,14 +129,11 @@ class PasteInvitationDialogState extends State<PasteInvitationDialog> {
} }
@override @override
// ignore: prefer_expression_function_bodies Widget build(BuildContext context) => InvitationDialog(
Widget build(BuildContext context) { locator: widget._locator,
return InvitationDialog( onValidationCancelled: onValidationCancelled,
locator: widget._locator, onValidationSuccess: onValidationSuccess,
onValidationCancelled: onValidationCancelled, onValidationFailed: onValidationFailed,
onValidationSuccess: onValidationSuccess, inviteControlIsValid: inviteControlIsValid,
onValidationFailed: onValidationFailed, buildInviteControl: buildInviteControl);
inviteControlIsValid: inviteControlIsValid,
buildInviteControl: buildInviteControl);
}
} }

View file

@ -169,7 +169,7 @@ class ScanInvitationDialogState extends State<ScanInvitationDialog> {
fit: BoxFit.contain, fit: BoxFit.contain,
scanWindow: scanWindow, scanWindow: scanWindow,
controller: cameraController, controller: cameraController,
errorBuilder: (context, error, child) => errorBuilder: (context, error) =>
ScannerErrorWidget(error: error), ScannerErrorWidget(error: error),
onDetect: (c) { onDetect: (c) {
final barcode = c.barcodes.firstOrNull; final barcode = c.barcodes.firstOrNull;
@ -242,6 +242,10 @@ class ScanInvitationDialogState extends State<ScanInvitationDialog> {
return const Icon(Icons.camera_front); return const Icon(Icons.camera_front);
case CameraFacing.back: case CameraFacing.back:
return const Icon(Icons.camera_rear); return const Icon(Icons.camera_rear);
case CameraFacing.external:
return const Icon(Icons.camera_alt);
case CameraFacing.unknown:
return const Icon(Icons.question_mark);
} }
}, },
), ),

View file

@ -27,8 +27,7 @@ class ContactDetailsWidget extends StatefulWidget {
final void Function(bool)? onModifiedState; final void Function(bool)? onModifiedState;
} }
class _ContactDetailsWidgetState extends State<ContactDetailsWidget> class _ContactDetailsWidgetState extends State<ContactDetailsWidget> {
with SingleTickerProviderStateMixin {
@override @override
Widget build(BuildContext context) => SingleChildScrollView( Widget build(BuildContext context) => SingleChildScrollView(
child: EditContactForm( child: EditContactForm(

View file

@ -23,7 +23,6 @@ class ContactItemWidget extends StatelessWidget {
_onDelete = onDelete; _onDelete = onDelete;
@override @override
// ignore: prefer_expression_function_bodies
Widget build( Widget build(
BuildContext context, BuildContext context,
) { ) {

View file

@ -8,7 +8,6 @@ import 'package:searchable_listview/searchable_listview.dart';
import 'package:star_menu/star_menu.dart'; import 'package:star_menu/star_menu.dart';
import 'package:veilid_support/veilid_support.dart'; import 'package:veilid_support/veilid_support.dart';
import '../../chat_list/chat_list.dart';
import '../../contact_invitation/contact_invitation.dart'; import '../../contact_invitation/contact_invitation.dart';
import '../../proto/proto.dart' as proto; import '../../proto/proto.dart' as proto;
import '../../theme/theme.dart'; import '../../theme/theme.dart';
@ -45,6 +44,7 @@ class ContactsBrowserElement {
class ContactsBrowser extends StatefulWidget { class ContactsBrowser extends StatefulWidget {
const ContactsBrowser( const ContactsBrowser(
{required this.onContactSelected, {required this.onContactSelected,
required this.onContactDeleted,
required this.onStartChat, required this.onStartChat,
this.selectedContactRecordKey, this.selectedContactRecordKey,
super.key}); super.key});
@ -52,6 +52,7 @@ class ContactsBrowser extends StatefulWidget {
State<ContactsBrowser> createState() => _ContactsBrowserState(); State<ContactsBrowser> createState() => _ContactsBrowserState();
final Future<void> Function(proto.Contact? contact) onContactSelected; final Future<void> Function(proto.Contact? contact) onContactSelected;
final Future<void> Function(proto.Contact contact) onContactDeleted;
final Future<void> Function(proto.Contact contact) onStartChat; final Future<void> Function(proto.Contact contact) onStartChat;
final TypedKey? selectedContactRecordKey; final TypedKey? selectedContactRecordKey;
@ -66,7 +67,10 @@ class ContactsBrowser extends StatefulWidget {
'onContactSelected', onContactSelected)) 'onContactSelected', onContactSelected))
..add( ..add(
ObjectFlagProperty<Future<void> Function(proto.Contact contact)>.has( ObjectFlagProperty<Future<void> Function(proto.Contact contact)>.has(
'onStartChat', onStartChat)); 'onStartChat', onStartChat))
..add(
ObjectFlagProperty<Future<void> Function(proto.Contact contact)>.has(
'onContactDeleted', onContactDeleted));
} }
} }
@ -89,8 +93,6 @@ class _ContactsBrowserState extends State<ContactsBrowser>
final menuParams = StarMenuParameters( final menuParams = StarMenuParameters(
shape: MenuShape.linear, shape: MenuShape.linear,
centerOffset: const Offset(0, 64), centerOffset: const Offset(0, 64),
// backgroundParams:
// BackgroundParams(backgroundColor: theme.shadowColor.withAlpha(128)),
boundaryBackground: BoundaryBackground( boundaryBackground: BoundaryBackground(
color: menuBackgroundColor, color: menuBackgroundColor,
decoration: ShapeDecoration( decoration: ShapeDecoration(
@ -145,7 +147,7 @@ class _ContactsBrowserState extends State<ContactsBrowser>
return StarMenu( return StarMenu(
items: inviteMenuItems, items: inviteMenuItems,
onItemTapped: (_index, controller) { onItemTapped: (_, controller) {
controller.closeMenu!(); controller.closeMenu!();
}, },
controller: _invitationMenuController, controller: _invitationMenuController,
@ -162,16 +164,13 @@ class _ContactsBrowserState extends State<ContactsBrowser>
Widget build(BuildContext context) { Widget build(BuildContext context) {
final theme = Theme.of(context); final theme = Theme.of(context);
final scale = theme.extension<ScaleScheme>()!; final scale = theme.extension<ScaleScheme>()!;
//final scaleConfig = theme.extension<ScaleConfig>()!;
final cilState = context.watch<ContactInvitationListCubit>().state; final cilState = context.watch<ContactInvitationListCubit>().state;
//final cilBusy = cilState.busy;
final contactInvitationRecordList = final contactInvitationRecordList =
cilState.state.asData?.value.map((x) => x.value).toIList() ?? cilState.state.asData?.value.map((x) => x.value).toIList() ??
const IListConst([]); const IListConst([]);
final ciState = context.watch<ContactListCubit>().state; final ciState = context.watch<ContactListCubit>().state;
//final ciBusy = ciState.busy;
final contactList = final contactList =
ciState.state.asData?.value.map((x) => x.value).toIList(); ciState.state.asData?.value.map((x) => x.value).toIList();
@ -201,8 +200,8 @@ class _ContactsBrowserState extends State<ContactsBrowser>
contact.localConversationRecordKey.toVeilid(), contact.localConversationRecordKey.toVeilid(),
disabled: false, disabled: false,
onDoubleTap: _onStartChat, onDoubleTap: _onStartChat,
onTap: _onSelectContact, onTap: onContactSelected,
onDelete: _onDeleteContact) onDelete: _onContactDeleted)
.paddingLTRB(0, 4, 0, 0); .paddingLTRB(0, 4, 0, 0);
case ContactsBrowserElementKind.invitation: case ContactsBrowserElementKind.invitation:
final invitation = element.invitation!; final invitation = element.invitation!;
@ -261,7 +260,7 @@ class _ContactsBrowserState extends State<ContactsBrowser>
]); ]);
} }
Future<void> _onSelectContact(proto.Contact contact) async { Future<void> onContactSelected(proto.Contact contact) async {
await widget.onContactSelected(contact); await widget.onContactSelected(contact);
} }
@ -269,20 +268,8 @@ class _ContactsBrowserState extends State<ContactsBrowser>
await widget.onStartChat(contact); await widget.onStartChat(contact);
} }
Future<void> _onDeleteContact(proto.Contact contact) async { Future<void> _onContactDeleted(proto.Contact contact) async {
final localConversationRecordKey = await widget.onContactDeleted(contact);
contact.localConversationRecordKey.toVeilid();
final contactListCubit = context.read<ContactListCubit>();
final chatListCubit = context.read<ChatListCubit>();
// Delete the contact itself
await contactListCubit.deleteContact(
localConversationRecordKey: localConversationRecordKey);
// Remove any chats for this contact
await chatListCubit.deleteChat(
localConversationRecordKey: localConversationRecordKey);
} }
//////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////

View file

@ -103,6 +103,7 @@ class _ContactsPageState extends State<ContactsPage> {
.toVeilid(), .toVeilid(),
onContactSelected: _onContactSelected, onContactSelected: _onContactSelected,
onStartChat: _onChatStarted, onStartChat: _onChatStarted,
onContactDeleted: _onContactDeleted,
).paddingLTRB(4, 0, 4, 8)))), ).paddingLTRB(4, 0, 4, 8)))),
if (enableRight && enableLeft) if (enableRight && enableLeft)
Container( Container(
@ -157,6 +158,40 @@ class _ContactsPageState extends State<ContactsPage> {
} }
} }
Future<bool> _onContactDeleted(proto.Contact contact) async {
if (contact == _selectedContact && _isModified) {
final ok = await showConfirmModal(
context: context,
title: translate('confirmation.discard_changes'),
text: translate('confirmation.are_you_sure_discard'));
if (!ok) {
return false;
}
}
setState(() {
_selectedContact = null;
_isModified = false;
});
if (mounted) {
final localConversationRecordKey =
contact.localConversationRecordKey.toVeilid();
final contactListCubit = context.read<ContactListCubit>();
final chatListCubit = context.read<ChatListCubit>();
// Delete the contact itself
await contactListCubit.deleteContact(
localConversationRecordKey: localConversationRecordKey);
// Remove any chats for this contact
await chatListCubit.deleteChat(
localConversationRecordKey: localConversationRecordKey);
}
return true;
}
proto.Contact? _selectedContact; proto.Contact? _selectedContact;
bool _isModified = false; var _isModified = false;
} }

View file

@ -2,7 +2,8 @@ PODS:
- file_saver (0.0.1): - file_saver (0.0.1):
- FlutterMacOS - FlutterMacOS
- FlutterMacOS (1.0.0) - FlutterMacOS (1.0.0)
- mobile_scanner (6.0.2): - mobile_scanner (7.0.0):
- Flutter
- FlutterMacOS - FlutterMacOS
- package_info_plus (0.0.1): - package_info_plus (0.0.1):
- FlutterMacOS - FlutterMacOS
@ -33,7 +34,7 @@ PODS:
DEPENDENCIES: DEPENDENCIES:
- file_saver (from `Flutter/ephemeral/.symlinks/plugins/file_saver/macos`) - file_saver (from `Flutter/ephemeral/.symlinks/plugins/file_saver/macos`)
- FlutterMacOS (from `Flutter/ephemeral`) - FlutterMacOS (from `Flutter/ephemeral`)
- mobile_scanner (from `Flutter/ephemeral/.symlinks/plugins/mobile_scanner/macos`) - mobile_scanner (from `Flutter/ephemeral/.symlinks/plugins/mobile_scanner/darwin`)
- package_info_plus (from `Flutter/ephemeral/.symlinks/plugins/package_info_plus/macos`) - package_info_plus (from `Flutter/ephemeral/.symlinks/plugins/package_info_plus/macos`)
- pasteboard (from `Flutter/ephemeral/.symlinks/plugins/pasteboard/macos`) - pasteboard (from `Flutter/ephemeral/.symlinks/plugins/pasteboard/macos`)
- path_provider_foundation (from `Flutter/ephemeral/.symlinks/plugins/path_provider_foundation/darwin`) - path_provider_foundation (from `Flutter/ephemeral/.symlinks/plugins/path_provider_foundation/darwin`)
@ -52,7 +53,7 @@ EXTERNAL SOURCES:
FlutterMacOS: FlutterMacOS:
:path: Flutter/ephemeral :path: Flutter/ephemeral
mobile_scanner: mobile_scanner:
:path: Flutter/ephemeral/.symlinks/plugins/mobile_scanner/macos :path: Flutter/ephemeral/.symlinks/plugins/mobile_scanner/darwin
package_info_plus: package_info_plus:
:path: Flutter/ephemeral/.symlinks/plugins/package_info_plus/macos :path: Flutter/ephemeral/.symlinks/plugins/package_info_plus/macos
pasteboard: pasteboard:
@ -79,7 +80,7 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS: SPEC CHECKSUMS:
file_saver: e35bd97de451dde55ff8c38862ed7ad0f3418d0f file_saver: e35bd97de451dde55ff8c38862ed7ad0f3418d0f
FlutterMacOS: 8f6f14fa908a6fb3fba0cd85dbd81ec4b251fb24 FlutterMacOS: 8f6f14fa908a6fb3fba0cd85dbd81ec4b251fb24
mobile_scanner: 0e365ed56cad24f28c0fd858ca04edefb40dfac3 mobile_scanner: 9157936403f5a0644ca3779a38ff8404c5434a93
package_info_plus: f0052d280d17aa382b932f399edf32507174e870 package_info_plus: f0052d280d17aa382b932f399edf32507174e870
pasteboard: 278d8100149f940fb795d6b3a74f0720c890ecb7 pasteboard: 278d8100149f940fb795d6b3a74f0720c890ecb7
path_provider_foundation: 080d55be775b7414fd5a5ef3ac137b97b097e564 path_provider_foundation: 080d55be775b7414fd5a5ef3ac137b97b097e564

View file

@ -5,18 +5,18 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: _fe_analyzer_shared name: _fe_analyzer_shared
sha256: dc27559385e905ad30838356c5f5d574014ba39872d732111cd07ac0beff4c57 sha256: e55636ed79578b9abca5fecf9437947798f5ef7456308b5cb85720b793eac92f
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "80.0.0" version: "82.0.0"
analyzer: analyzer:
dependency: transitive dependency: transitive
description: description:
name: analyzer name: analyzer
sha256: "192d1c5b944e7e53b24b5586db760db934b177d4147c42fbca8c8c5f1eb8d11e" sha256: "904ae5bb474d32c38fb9482e2d925d5454cda04ddd0e55d2e6826bc72f6ba8c0"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "7.3.0" version: "7.4.5"
args: args:
dependency: transitive dependency: transitive
description: description:
@ -29,10 +29,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: async name: async
sha256: d2872f9c19731c2e5f10444b14686eb7cc85c76274bd6c16e1816bff9a3bab63 sha256: "758e6d74e971c3e5aceb4110bfd6698efc7f501675bcfe0c775459a8140750eb"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "2.12.0" version: "2.13.0"
async_tools: async_tools:
dependency: "direct dev" dependency: "direct dev"
description: description:
@ -53,10 +53,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: bloc_advanced_tools name: bloc_advanced_tools
sha256: "1f402feb620a33bcb428f0b2c37f00a7d98c3b61cc27fda047d59f4fa82527a8" sha256: dfb142569814952af8d93e7fe045972d847e29382471687db59913e253202f6e
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.1.11" version: "0.1.12"
boolean_selector: boolean_selector:
dependency: transitive dependency: transitive
description: description:
@ -89,6 +89,14 @@ packages:
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "1.4.0" version: "1.4.0"
cli_config:
dependency: transitive
description:
name: cli_config
sha256: ac20a183a07002b700f0c25e61b7ee46b23c309d76ab7b7640a028f18e4d99ec
url: "https://pub.dev"
source: hosted
version: "0.2.0"
clock: clock:
dependency: transitive dependency: transitive
description: description:
@ -117,10 +125,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: coverage name: coverage
sha256: e3493833ea012784c740e341952298f1cc77f1f01b1bbc3eb4eecf6984fb7f43 sha256: "802bd084fb82e55df091ec8ad1553a7331b61c08251eef19a508b6f3f3a9858d"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "1.11.1" version: "1.13.1"
crypto: crypto:
dependency: transitive dependency: transitive
description: description:
@ -149,18 +157,18 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: fake_async name: fake_async
sha256: "6a95e56b2449df2273fd8c45a662d6947ce1ebb7aafe80e550a3f68297f3cacc" sha256: "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "1.3.2" version: "1.3.3"
fast_immutable_collections: fast_immutable_collections:
dependency: transitive dependency: transitive
description: description:
name: fast_immutable_collections name: fast_immutable_collections
sha256: "95a69b9380483dff49ae2c12c9eb92e2b4e1aeff481a33c2a20883471771598a" sha256: d1aa3d7788fab06cce7f303f4969c7a16a10c865e1bd2478291a8ebcbee084e5
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "11.0.3" version: "11.0.4"
ffi: ffi:
dependency: transitive dependency: transitive
description: description:
@ -299,10 +307,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: leak_tracker name: leak_tracker
sha256: c35baad643ba394b40aac41080300150a4f08fd0fd6a10378f8f7c6bc161acec sha256: "6bb818ecbdffe216e81182c2f0714a2e62b593f4a4f13098713ff1685dfb6ab0"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "10.0.8" version: "10.0.9"
leak_tracker_flutter_testing: leak_tracker_flutter_testing:
dependency: transitive dependency: transitive
description: description:
@ -323,10 +331,10 @@ packages:
dependency: "direct dev" dependency: "direct dev"
description: description:
name: lint_hard name: lint_hard
sha256: ffe7058cb49e021d244d67e650a63380445b56643c2849c6929e938246b99058 sha256: "2073d4e83ac4e3f2b87cc615fff41abb5c2c5618e117edcd3d71f40f2186f4d5"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "6.0.0" version: "6.1.1"
logging: logging:
dependency: transitive dependency: transitive
description: description:
@ -411,10 +419,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: path_provider_android name: path_provider_android
sha256: "0ca7359dad67fd7063cb2892ab0c0737b2daafd807cf1acecd62374c8fae6c12" sha256: d0d310befe2c8ab9e7f393288ccbb11b60c019c6b5afc21973eeee4dda2b35e9
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "2.2.16" version: "2.2.17"
path_provider_foundation: path_provider_foundation:
dependency: transitive dependency: transitive
description: description:
@ -483,10 +491,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: protobuf name: protobuf
sha256: "68645b24e0716782e58948f8467fd42a880f255096a821f9e7d0ec625b00c84d" sha256: "579fe5557eae58e3adca2e999e38f02441d8aa908703854a9e0a0f47fa857731"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "3.1.0" version: "4.1.0"
pub_semver: pub_semver:
dependency: transitive dependency: transitive
description: description:
@ -677,10 +685,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: vm_service name: vm_service
sha256: "0968250880a6c5fe7edc067ed0a13d4bae1577fe2771dcf3010d52c4a9d3ca14" sha256: ddfa8d30d89985b96407efce8acbdd124701f96741f2d981ca860662f1c0dc02
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "14.3.1" version: "15.0.0"
watcher: watcher:
dependency: transitive dependency: transitive
description: description:
@ -701,26 +709,26 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: web_socket name: web_socket
sha256: "3c12d96c0c9a4eec095246debcea7b86c0324f22df69893d538fcc6f1b8cce83" sha256: "34d64019aa8e36bf9842ac014bb5d2f5586ca73df5e4d9bf5c936975cae6982c"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.1.6" version: "1.0.1"
web_socket_channel: web_socket_channel:
dependency: transitive dependency: transitive
description: description:
name: web_socket_channel name: web_socket_channel
sha256: "0b8e2457400d8a859b7b2030786835a28a8e80836ef64402abef392ff4f1d0e5" sha256: d645757fb0f4773d602444000a8131ff5d48c9e47adfe9772652dd1a4f2d45c8
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "3.0.2" version: "3.0.3"
webdriver: webdriver:
dependency: transitive dependency: transitive
description: description:
name: webdriver name: webdriver
sha256: "3d773670966f02a646319410766d3b5e1037efb7f07cc68f844d5e06cd4d61c8" sha256: "2f3a14ca026957870cfd9c635b83507e0e51d8091568e90129fbf805aba7cade"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "3.0.4" version: "3.1.0"
webkit_inspection_protocol: webkit_inspection_protocol:
dependency: transitive dependency: transitive
description: description:

View file

@ -5,18 +5,18 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: _fe_analyzer_shared name: _fe_analyzer_shared
sha256: dc27559385e905ad30838356c5f5d574014ba39872d732111cd07ac0beff4c57 sha256: e55636ed79578b9abca5fecf9437947798f5ef7456308b5cb85720b793eac92f
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "80.0.0" version: "82.0.0"
analyzer: analyzer:
dependency: transitive dependency: transitive
description: description:
name: analyzer name: analyzer
sha256: "192d1c5b944e7e53b24b5586db760db934b177d4147c42fbca8c8c5f1eb8d11e" sha256: "904ae5bb474d32c38fb9482e2d925d5454cda04ddd0e55d2e6826bc72f6ba8c0"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "7.3.0" version: "7.4.5"
args: args:
dependency: transitive dependency: transitive
description: description:
@ -36,9 +36,10 @@ packages:
async_tools: async_tools:
dependency: "direct main" dependency: "direct main"
description: description:
path: "../../../dart_async_tools" name: async_tools
relative: true sha256: afd5426e76631172f8ce6a6359b264b092fa9d2a52cd2528100115be9525e067
source: path url: "https://pub.dev"
source: hosted
version: "0.1.9" version: "0.1.9"
bloc: bloc:
dependency: "direct main" dependency: "direct main"
@ -51,10 +52,11 @@ packages:
bloc_advanced_tools: bloc_advanced_tools:
dependency: "direct main" dependency: "direct main"
description: description:
path: "../../../bloc_advanced_tools" name: bloc_advanced_tools
relative: true sha256: dfb142569814952af8d93e7fe045972d847e29382471687db59913e253202f6e
source: path url: "https://pub.dev"
version: "0.1.11" source: hosted
version: "0.1.12"
boolean_selector: boolean_selector:
dependency: transitive dependency: transitive
description: description:
@ -159,6 +161,14 @@ packages:
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "2.0.3" version: "2.0.3"
cli_config:
dependency: transitive
description:
name: cli_config
sha256: ac20a183a07002b700f0c25e61b7ee46b23c309d76ab7b7640a028f18e4d99ec
url: "https://pub.dev"
source: hosted
version: "0.2.0"
code_builder: code_builder:
dependency: transitive dependency: transitive
description: description:
@ -187,10 +197,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: coverage name: coverage
sha256: e3493833ea012784c740e341952298f1cc77f1f01b1bbc3eb4eecf6984fb7f43 sha256: "802bd084fb82e55df091ec8ad1553a7331b61c08251eef19a508b6f3f3a9858d"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "1.11.1" version: "1.13.1"
crypto: crypto:
dependency: transitive dependency: transitive
description: description:
@ -203,10 +213,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: dart_style name: dart_style
sha256: "27eb0ae77836989a3bc541ce55595e8ceee0992807f14511552a898ddd0d88ac" sha256: "5b236382b47ee411741447c1f1e111459c941ea1b3f2b540dde54c210a3662af"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "3.0.1" version: "3.1.0"
equatable: equatable:
dependency: "direct main" dependency: "direct main"
description: description:
@ -219,10 +229,10 @@ packages:
dependency: "direct main" dependency: "direct main"
description: description:
name: fast_immutable_collections name: fast_immutable_collections
sha256: "95a69b9380483dff49ae2c12c9eb92e2b4e1aeff481a33c2a20883471771598a" sha256: d1aa3d7788fab06cce7f303f4969c7a16a10c865e1bd2478291a8ebcbee084e5
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "11.0.3" version: "11.0.4"
ffi: ffi:
dependency: transitive dependency: transitive
description: description:
@ -261,10 +271,10 @@ packages:
dependency: "direct dev" dependency: "direct dev"
description: description:
name: freezed name: freezed
sha256: "7ed2ddaa47524976d5f2aa91432a79da36a76969edd84170777ac5bea82d797c" sha256: "6022db4c7bfa626841b2a10f34dd1e1b68e8f8f9650db6112dcdeeca45ca793c"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "3.0.4" version: "3.0.6"
freezed_annotation: freezed_annotation:
dependency: "direct main" dependency: "direct main"
description: description:
@ -309,10 +319,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: http name: http
sha256: fe7ab022b76f3034adc518fb6ea04a82387620e19977665ea18d30a1cf43442f sha256: "2c11f3f94c687ee9bad77c171151672986360b2b001d109814ee7140b2cf261b"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "1.3.0" version: "1.4.0"
http_multi_server: http_multi_server:
dependency: transitive dependency: transitive
description: description:
@ -365,18 +375,18 @@ packages:
dependency: "direct dev" dependency: "direct dev"
description: description:
name: json_serializable name: json_serializable
sha256: "81f04dee10969f89f604e1249382d46b97a1ccad53872875369622b5bfc9e58a" sha256: c50ef5fc083d5b5e12eef489503ba3bf5ccc899e487d691584699b4bdefeea8c
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "6.9.4" version: "6.9.5"
lint_hard: lint_hard:
dependency: "direct dev" dependency: "direct dev"
description: description:
name: lint_hard name: lint_hard
sha256: ffe7058cb49e021d244d67e650a63380445b56643c2849c6929e938246b99058 sha256: "2073d4e83ac4e3f2b87cc615fff41abb5c2c5618e117edcd3d71f40f2186f4d5"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "6.0.0" version: "6.1.1"
logging: logging:
dependency: transitive dependency: transitive
description: description:
@ -461,10 +471,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: path_provider_android name: path_provider_android
sha256: "0ca7359dad67fd7063cb2892ab0c0737b2daafd807cf1acecd62374c8fae6c12" sha256: d0d310befe2c8ab9e7f393288ccbb11b60c019c6b5afc21973eeee4dda2b35e9
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "2.2.16" version: "2.2.17"
path_provider_foundation: path_provider_foundation:
dependency: transitive dependency: transitive
description: description:
@ -525,10 +535,10 @@ packages:
dependency: "direct main" dependency: "direct main"
description: description:
name: protobuf name: protobuf
sha256: "68645b24e0716782e58948f8467fd42a880f255096a821f9e7d0ec625b00c84d" sha256: "579fe5557eae58e3adca2e999e38f02441d8aa908703854a9e0a0f47fa857731"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "3.1.0" version: "4.1.0"
pub_semver: pub_semver:
dependency: transitive dependency: transitive
description: description:
@ -682,26 +692,26 @@ packages:
dependency: "direct dev" dependency: "direct dev"
description: description:
name: test name: test
sha256: "301b213cd241ca982e9ba50266bd3f5bd1ea33f1455554c5abb85d1be0e2d87e" sha256: "65e29d831719be0591f7b3b1a32a3cda258ec98c58c7b25f7b84241bc31215bb"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "1.25.15" version: "1.26.2"
test_api: test_api:
dependency: transitive dependency: transitive
description: description:
name: test_api name: test_api
sha256: fb31f383e2ee25fbbfe06b40fe21e1e458d14080e3c67e7ba0acfde4df4e0bbd sha256: "522f00f556e73044315fa4585ec3270f1808a4b186c936e612cab0b565ff1e00"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.7.4" version: "0.7.6"
test_core: test_core:
dependency: transitive dependency: transitive
description: description:
name: test_core name: test_core
sha256: "84d17c3486c8dfdbe5e12a50c8ae176d15e2a771b96909a9442b40173649ccaa" sha256: "80bf5a02b60af04b09e14f6fe68b921aad119493e26e490deaca5993fef1b05a"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.6.8" version: "0.6.11"
timing: timing:
dependency: transitive dependency: transitive
description: description:
@ -737,10 +747,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: vm_service name: vm_service
sha256: ddfa8d30d89985b96407efce8acbdd124701f96741f2d981ca860662f1c0dc02 sha256: "6f82e9ee8e7339f5d8b699317f6f3afc17c80a68ebef1bc0d6f52a678c14b1e6"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "15.0.0" version: "15.0.1"
watcher: watcher:
dependency: transitive dependency: transitive
description: description:
@ -761,18 +771,18 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: web_socket name: web_socket
sha256: "3c12d96c0c9a4eec095246debcea7b86c0324f22df69893d538fcc6f1b8cce83" sha256: "34d64019aa8e36bf9842ac014bb5d2f5586ca73df5e4d9bf5c936975cae6982c"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.1.6" version: "1.0.1"
web_socket_channel: web_socket_channel:
dependency: transitive dependency: transitive
description: description:
name: web_socket_channel name: web_socket_channel
sha256: "0b8e2457400d8a859b7b2030786835a28a8e80836ef64402abef392ff4f1d0e5" sha256: d645757fb0f4773d602444000a8131ff5d48c9e47adfe9772652dd1a4f2d45c8
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "3.0.2" version: "3.0.3"
webkit_inspection_protocol: webkit_inspection_protocol:
dependency: transitive dependency: transitive
description: description:

View file

@ -9,7 +9,7 @@ environment:
dependencies: dependencies:
async_tools: ^0.1.9 async_tools: ^0.1.9
bloc: ^9.0.0 bloc: ^9.0.0
bloc_advanced_tools: ^0.1.11 bloc_advanced_tools: ^0.1.12
charcode: ^1.4.0 charcode: ^1.4.0
collection: ^1.19.1 collection: ^1.19.1
convert: ^3.1.2 convert: ^3.1.2
@ -23,16 +23,16 @@ dependencies:
path: ^1.9.1 path: ^1.9.1
path_provider: ^2.1.5 path_provider: ^2.1.5
protobuf: ^3.1.0 protobuf: ^4.1.0
veilid: veilid:
# veilid: ^0.0.1 # veilid: ^0.0.1
path: ../../../veilid/veilid-flutter path: ../../../veilid/veilid-flutter
dependency_overrides: # dependency_overrides:
async_tools: # async_tools:
path: ../../../dart_async_tools # path: ../../../dart_async_tools
bloc_advanced_tools: # bloc_advanced_tools:
path: ../../../bloc_advanced_tools # path: ../../../bloc_advanced_tools
dev_dependencies: dev_dependencies:
build_runner: ^2.4.15 build_runner: ^2.4.15

View file

@ -92,9 +92,10 @@ packages:
async_tools: async_tools:
dependency: "direct main" dependency: "direct main"
description: description:
path: "../dart_async_tools" name: async_tools
relative: true sha256: afd5426e76631172f8ce6a6359b264b092fa9d2a52cd2528100115be9525e067
source: path url: "https://pub.dev"
source: hosted
version: "0.1.9" version: "0.1.9"
auto_size_text: auto_size_text:
dependency: "direct main" dependency: "direct main"
@ -155,10 +156,11 @@ packages:
bloc_advanced_tools: bloc_advanced_tools:
dependency: "direct main" dependency: "direct main"
description: description:
path: "../bloc_advanced_tools" name: bloc_advanced_tools
relative: true sha256: dfb142569814952af8d93e7fe045972d847e29382471687db59913e253202f6e
source: path url: "https://pub.dev"
version: "0.1.11" source: hosted
version: "0.1.12"
blurry_modal_progress_hud: blurry_modal_progress_hud:
dependency: "direct main" dependency: "direct main"
description: description:
@ -275,10 +277,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: camera_android_camerax name: camera_android_camerax
sha256: ea7e40bd63afb8f55058e48ec529ce96562be9d08393f79631a06f781161fd0d sha256: "9fb44e73e0fea3647a904dc26d38db24055e5b74fc68fd2b6d3abfa1bd20f536"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.6.16" version: "0.6.17"
camera_avfoundation: camera_avfoundation:
dependency: transitive dependency: transitive
description: description:
@ -435,10 +437,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: dart_style name: dart_style
sha256: "27eb0ae77836989a3bc541ce55595e8ceee0992807f14511552a898ddd0d88ac" sha256: "5b236382b47ee411741447c1f1e111459c941ea1b3f2b540dde54c210a3662af"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "3.0.1" version: "3.1.0"
diffutil_dart: diffutil_dart:
dependency: transitive dependency: transitive
description: description:
@ -475,10 +477,10 @@ packages:
dependency: "direct main" dependency: "direct main"
description: description:
name: expansion_tile_group name: expansion_tile_group
sha256: "3be10b81d6d99d1213fe76a285993be0ea6092565ac100152deb6cdf9f5521dc" sha256: "894c5088d94dda5d1ddde50463881935ff41b15850fe674605b9003d09716c8e"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "2.2.0" version: "2.3.0"
fast_immutable_collections: fast_immutable_collections:
dependency: "direct main" dependency: "direct main"
description: description:
@ -552,18 +554,18 @@ packages:
dependency: "direct main" dependency: "direct main"
description: description:
name: flutter_chat_core name: flutter_chat_core
sha256: "529959634622e9df3b96a4a3764ecc61ec6f0dfa3258a52c139ae10a56ccad80" sha256: "7875785bc4aa0b1dce56a76d2a8bd65841c130a3deb2c527878ebfdf8c54f971"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "2.2.0" version: "2.3.0"
flutter_chat_ui: flutter_chat_ui:
dependency: "direct main" dependency: "direct main"
description: description:
name: flutter_chat_ui name: flutter_chat_ui
sha256: c63df9cd05fe86a3588b4e47f184fbb9e9c3b86153b8a97f3a789e6edb03d28e sha256: "012aa0d9cc2898b8f89b48f66adb106de9547e466ba21ad54ccef25515f68dcc"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "2.2.0" version: "2.3.0"
flutter_form_builder: flutter_form_builder:
dependency: "direct main" dependency: "direct main"
description: description:
@ -629,10 +631,10 @@ packages:
dependency: "direct main" dependency: "direct main"
description: description:
name: flutter_sticky_header name: flutter_sticky_header
sha256: "7f76d24d119424ca0c95c146b8627a457e8de8169b0d584f766c2c545db8f8be" sha256: fb4fda6164ef3e5fc7ab73aba34aad253c17b7c6ecf738fa26f1a905b7d2d1e2
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.7.0" version: "0.8.0"
flutter_svg: flutter_svg:
dependency: "direct main" dependency: "direct main"
description: description:
@ -722,10 +724,10 @@ packages:
dependency: "direct main" dependency: "direct main"
description: description:
name: go_router name: go_router
sha256: f02fd7d2a4dc512fec615529824fdd217fecb3a3d3de68360293a551f21634b3 sha256: "0b1e06223bee260dee31a171fb1153e306907563a0b0225e8c1733211911429a"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "14.8.1" version: "15.1.2"
graphs: graphs:
dependency: transitive dependency: transitive
description: description:
@ -786,10 +788,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: idb_shim name: idb_shim
sha256: d3dae2085f2dcc9d05b851331fddb66d57d3447ff800de9676b396795436e135 sha256: "40e872276d79a1a97cc2c1ea0ecf046b8e34d788f16a8ea8f0da3e9b337d42da"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "2.6.5+1" version: "2.6.6+1"
image: image:
dependency: "direct main" dependency: "direct main"
description: description:
@ -810,10 +812,10 @@ packages:
dependency: "direct main" dependency: "direct main"
description: description:
name: intl name: intl
sha256: d6f56758b7d3014a48af9701c085700aac781a92a87a62b1333b46d8879661cf sha256: "3df61194eb431efc39c4ceba583b95633a403f46c9fd341e550ce0bfa50e9aa5"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.19.0" version: "0.20.2"
io: io:
dependency: transitive dependency: transitive
description: description:
@ -914,10 +916,10 @@ packages:
dependency: "direct main" dependency: "direct main"
description: description:
name: mobile_scanner name: mobile_scanner
sha256: f536c5b8cadcf73d764bdce09c94744f06aa832264730f8971b21a60c5666826 sha256: "72f06a071aa8b14acea3ab43ea7949eefe4a2469731ae210e006ba330a033a8c"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "6.0.10" version: "7.0.0"
nested: nested:
dependency: transitive dependency: transitive
description: description:
@ -962,10 +964,10 @@ packages:
dependency: "direct main" dependency: "direct main"
description: description:
name: pasteboard name: pasteboard
sha256: "7bf733f3a00c7188ec1f2c6f0612854248b302cf91ef3611a2b7bb141c0f9d55" sha256: "9ff73ada33f79a59ff91f6c01881fd4ed0a0031cfc4ae2d86c0384471525fca1"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.3.0" version: "0.4.0"
path: path:
dependency: "direct main" dependency: "direct main"
description: description:
@ -1130,10 +1132,10 @@ packages:
dependency: "direct main" dependency: "direct main"
description: description:
name: protobuf name: protobuf
sha256: "68645b24e0716782e58948f8467fd42a880f255096a821f9e7d0ec625b00c84d" sha256: "579fe5557eae58e3adca2e999e38f02441d8aa908703854a9e0a0f47fa857731"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "3.1.0" version: "4.1.0"
provider: provider:
dependency: "direct main" dependency: "direct main"
description: description:
@ -1315,18 +1317,18 @@ packages:
dependency: "direct main" dependency: "direct main"
description: description:
name: share_plus name: share_plus
sha256: fce43200aa03ea87b91ce4c3ac79f0cecd52e2a7a56c7a4185023c271fbfa6da sha256: b2961506569e28948d75ec346c28775bb111986bb69dc6a20754a457e3d97fa0
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "10.1.4" version: "11.0.0"
share_plus_platform_interface: share_plus_platform_interface:
dependency: transitive dependency: transitive
description: description:
name: share_plus_platform_interface name: share_plus_platform_interface
sha256: cc012a23fc2d479854e6c80150696c4a5f5bb62cb89af4de1c505cf78d0a5d0b sha256: "1032d392bc5d2095a77447a805aa3f804d2ae6a4d5eef5e6ebb3bd94c1bc19ef"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "5.0.2" version: "6.0.0"
shared_preferences: shared_preferences:
dependency: "direct main" dependency: "direct main"
description: description:
@ -1601,10 +1603,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: test_api name: test_api
sha256: "6c7653816b1c938e121b69ff63a33c9dc68102b65a5fb0a5c0f9786256ed33e6" sha256: "522f00f556e73044315fa4585ec3270f1808a4b186c936e612cab0b565ff1e00"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.7.5" version: "0.7.6"
timing: timing:
dependency: transitive dependency: transitive
description: description:
@ -1729,10 +1731,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: value_layout_builder name: value_layout_builder
sha256: c02511ea91ca5c643b514a33a38fa52536f74aa939ec367d02938b5ede6807fa sha256: ab4b7d98bac8cefeb9713154d43ee0477490183f5aa23bb4ffa5103d9bbf6275
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.4.0" version: "0.5.0"
vector_graphics: vector_graphics:
dependency: transitive dependency: transitive
description: description:
@ -1753,10 +1755,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: vector_graphics_compiler name: vector_graphics_compiler
sha256: "1b4b9e706a10294258727674a340ae0d6e64a7231980f9f9a3d12e4b42407aad" sha256: "557a315b7d2a6dbb0aaaff84d857967ce6bdc96a63dc6ee2a57ce5a6ee5d3331"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "1.1.16" version: "1.1.17"
vector_math: vector_math:
dependency: transitive dependency: transitive
description: description:
@ -1885,4 +1887,4 @@ packages:
version: "1.1.2" version: "1.1.2"
sdks: sdks:
dart: ">=3.7.0 <4.0.0" dart: ">=3.7.0 <4.0.0"
flutter: ">=3.29.0" flutter: ">=3.32.0"

View file

@ -5,7 +5,7 @@ version: 0.4.7+20
environment: environment:
sdk: ">=3.2.0 <4.0.0" sdk: ">=3.2.0 <4.0.0"
flutter: ">=3.22.1" flutter: ">=3.32.0"
dependencies: dependencies:
accordion: ^2.6.0 accordion: ^2.6.0
@ -21,7 +21,7 @@ dependencies:
badges: ^3.1.2 badges: ^3.1.2
basic_utils: ^5.8.2 basic_utils: ^5.8.2
bloc: ^9.0.0 bloc: ^9.0.0
bloc_advanced_tools: ^0.1.11 bloc_advanced_tools: ^0.1.12
blurry_modal_progress_hud: ^1.1.1 blurry_modal_progress_hud: ^1.1.1
change_case: ^2.2.0 change_case: ^2.2.0
charcode: ^1.4.0 charcode: ^1.4.0
@ -46,29 +46,29 @@ dependencies:
flutter_native_splash: ^2.4.5 flutter_native_splash: ^2.4.5
flutter_slidable: ^4.0.0 flutter_slidable: ^4.0.0
flutter_spinkit: ^5.2.1 flutter_spinkit: ^5.2.1
flutter_sticky_header: ^0.7.0 flutter_sticky_header: ^0.8.0
flutter_svg: ^2.0.17 flutter_svg: ^2.0.17
flutter_translate: ^4.1.0 flutter_translate: ^4.1.0
flutter_zoom_drawer: ^3.2.0 flutter_zoom_drawer: ^3.2.0
form_builder_validators: ^11.1.2 form_builder_validators: ^11.1.2
freezed_annotation: ^3.0.0 freezed_annotation: ^3.0.0
go_router: ^14.8.1 go_router: ^15.1.2
image: ^4.5.3 image: ^4.5.3
intl: ^0.19.0 intl: ^0.19.0
json_annotation: ^4.9.0 json_annotation: ^4.9.0
keyboard_avoider: ^0.2.0 keyboard_avoider: ^0.2.0
loggy: ^2.0.3 loggy: ^2.0.3
meta: ^1.16.0 meta: ^1.16.0
mobile_scanner: ^6.0.7 mobile_scanner: ^7.0.0
package_info_plus: ^8.3.0 package_info_plus: ^8.3.0
pasteboard: ^0.3.0 pasteboard: ^0.4.0
path: ^1.9.1 path: ^1.9.1
path_provider: ^2.1.5 path_provider: ^2.1.5
pdf: ^3.11.3 pdf: ^3.11.3
pinput: ^5.0.1 pinput: ^5.0.1
preload_page_view: ^0.2.0 preload_page_view: ^0.2.0
printing: ^5.14.2 printing: ^5.14.2
protobuf: ^3.1.0 protobuf: ^4.1.0
provider: ^6.1.2 provider: ^6.1.2
qr_code_dart_scan: ^0.10.0 qr_code_dart_scan: ^0.10.0
qr_flutter: ^4.1.0 qr_flutter: ^4.1.0
@ -81,7 +81,7 @@ dependencies:
git: git:
url: https://gitlab.com/veilid/Searchable-Listview.git url: https://gitlab.com/veilid/Searchable-Listview.git
ref: main ref: main
share_plus: ^10.1.4 share_plus: ^11.0.0
shared_preferences: ^2.5.2 shared_preferences: ^2.5.2
signal_strength_indicator: ^0.4.1 signal_strength_indicator: ^0.4.1
sliver_expandable: ^1.1.2 sliver_expandable: ^1.1.2
@ -109,16 +109,17 @@ dependencies:
zxing2: ^0.2.3 zxing2: ^0.2.3
dependency_overrides: dependency_overrides:
async_tools: intl: ^0.20.2 # Until flutter_translate updates intl
path: ../dart_async_tools # async_tools:
bloc_advanced_tools: # path: ../dart_async_tools
path: ../bloc_advanced_tools # bloc_advanced_tools:
# searchable_listview: # path: ../bloc_advanced_tools
# path: ../Searchable-Listview # searchable_listview:
# flutter_chat_core: # path: ../Searchable-Listview
# path: ../flutter_chat_ui/packages/flutter_chat_core # flutter_chat_core:
# flutter_chat_ui: # path: ../flutter_chat_ui/packages/flutter_chat_core
# path: ../flutter_chat_ui/packages/flutter_chat_ui # flutter_chat_ui:
# path: ../flutter_chat_ui/packages/flutter_chat_ui
dev_dependencies: dev_dependencies:
build_runner: ^2.4.15 build_runner: ^2.4.15