Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PE-5325: feat(sharing intent) #1531

Merged
merged 35 commits into from
Jan 30, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
558cca1
feat(sharing intent)
thiagocarvalhodev Dec 21, 2023
ecb519e
fix lint
thiagocarvalhodev Dec 21, 2023
5e30cd6
Update sync_cubit.dart
thiagocarvalhodev Dec 21, 2023
eccdcb0
add failed status string back
thiagocarvalhodev Jan 9, 2024
8793b95
feat(sharing)
thiagocarvalhodev Jan 10, 2024
4224738
Merge branch 'dev' into share-poc
thiagocarvalhodev Jan 11, 2024
22b69b7
Update sharing_file_bloc.dart
thiagocarvalhodev Jan 11, 2024
3483358
Update sharing_file_bloc.dart
thiagocarvalhodev Jan 11, 2024
b353bd5
fix(sharing file)
thiagocarvalhodev Jan 23, 2024
8271721
Update sharing_file_listener.dart
thiagocarvalhodev Jan 24, 2024
bfd6b98
Update AndroidManifest.xml
thiagocarvalhodev Jan 24, 2024
d23ecfc
feat(sharing)
thiagocarvalhodev Jan 25, 2024
3410878
Merge pull request #1571 from ardriveapp/PE-5446-file-name-overflow-i…
thiagocarvalhodev Jan 25, 2024
6c034f9
Merge branch 'dev' into share-poc
thiagocarvalhodev Jan 25, 2024
e15d478
Merge branch 'share-poc' of github.com:ardriveapp/ardrive-web into sh…
thiagocarvalhodev Jan 25, 2024
70f38ca
Merge branch 'dev' into share-poc
thiagocarvalhodev Jan 25, 2024
65c13e3
Update main.dart
thiagocarvalhodev Jan 26, 2024
a0a743c
Merge pull request #1573 from ardriveapp/PE-5498-duplicate-public-dri…
thiagocarvalhodev Jan 26, 2024
7111e2a
fix(intent share): fixes navigation, font colors, and freezing on upl…
atticusofsparta Jan 29, 2024
331d5e8
fix(drive select): scroll issues
atticusofsparta Jan 29, 2024
8bb73ab
Update main.dart
thiagocarvalhodev Jan 29, 2024
cef7a5c
fix(colors): use correct text theme in modals
atticusofsparta Jan 29, 2024
a7da03a
Merge branch 'share-poc' into PE-5444-fix-app-freezing-on-share
atticusofsparta Jan 29, 2024
63d7f2c
Merge pull request #1579 from ardriveapp/PE-5444-fix-app-freezing-on-…
atticusofsparta Jan 29, 2024
a7ec91a
Merge branch 'share-poc' into PE-5445-scrolling-issues
atticusofsparta Jan 29, 2024
77d8879
fix(sharing intent)
thiagocarvalhodev Jan 29, 2024
c54ae40
remove duplicated event
thiagocarvalhodev Jan 30, 2024
15ead3f
remove pop
thiagocarvalhodev Jan 30, 2024
bc0781f
fix(sharing file)
thiagocarvalhodev Jan 30, 2024
35304c7
Merge pull request #1580 from ardriveapp/PE-5445-scrolling-issues
thiagocarvalhodev Jan 30, 2024
175ed08
Merge pull request #1584 from ardriveapp/PE-5521-missing-modal-for-tx…
thiagocarvalhodev Jan 30, 2024
b98e060
fix(sharing)
thiagocarvalhodev Jan 30, 2024
38c52bd
fix(sharing)
thiagocarvalhodev Jan 30, 2024
7e26203
fix lint
thiagocarvalhodev Jan 30, 2024
8532cb5
Update folder_selector.dart
thiagocarvalhodev Jan 30, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"editor.codeActionsOnSave": {
"source.organizeImports": true
"source.organizeImports": "explicit"
},
"bloc.newBlocTemplate": "equatable",
"bloc.newCubitTemplate": "equatable",
Expand Down
10 changes: 10 additions & 0 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,16 @@
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="*/*" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND_MULTIPLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="*/*" />
</intent-filter>
</activity>
<!-- Don't delete the meta-data below.
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
Expand Down
Loading
Loading