flutter version update
This commit is contained in:
parent
aff4b29008
commit
a0df2db1f4
2 changed files with 9 additions and 10 deletions
|
|
@ -429,12 +429,15 @@ class ChatListController extends State<ChatList>
|
|||
// For sharing images coming from outside the app while the app is closed
|
||||
ReceiveSharingIntent.getInitialMedia().then(_processIncomingSharedFiles);
|
||||
|
||||
// For sharing or opening urls/text coming from outside the app while the app is in the memory
|
||||
_intentDataStreamSubscription = ReceiveSharingIntent.getTextStream()
|
||||
.listen(_processIncomingSharedText, onError: print);
|
||||
// #Pangea
|
||||
// dependency is outdated and prevents app from building
|
||||
// // For sharing or opening urls/text coming from outside the app while the app is in the memory
|
||||
// _intentDataStreamSubscription = ReceiveSharingIntent.getTextStream()
|
||||
// .listen(_processIncomingSharedText, onError: print);
|
||||
|
||||
// For sharing or opening urls/text coming from outside the app while the app is closed
|
||||
ReceiveSharingIntent.getInitialText().then(_processIncomingSharedText);
|
||||
// // For sharing or opening urls/text coming from outside the app while the app is closed
|
||||
// ReceiveSharingIntent.getInitialText().then(_processIncomingSharedText);
|
||||
// Pangea#
|
||||
|
||||
// For receiving shared Uris
|
||||
_intentUriStreamSubscription = linkStream.listen(_processIncomingUris);
|
||||
|
|
|
|||
|
|
@ -71,10 +71,7 @@ dependencies:
|
|||
linkify: ^5.0.0
|
||||
# #Pangea
|
||||
# matrix: ^0.25.7
|
||||
matrix:
|
||||
git:
|
||||
url: https://github.com/ggurdin/matrix-dart-sdk.git
|
||||
ref: ggurdin/indexeddb-clear-fix
|
||||
matrix: ^0.25.11
|
||||
# until https://github.com/famedly/matrix-dart-sdk/pull/1712
|
||||
# Pangea#
|
||||
native_imaging: ^0.1.0
|
||||
|
|
@ -138,7 +135,6 @@ dependencies:
|
|||
# Pangea#
|
||||
|
||||
dev_dependencies:
|
||||
dart_code_metrics: ^5.7.5
|
||||
flutter_lints: ^3.0.0
|
||||
flutter_native_splash: ^2.0.3+1
|
||||
flutter_test:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue