Skip to content

Peer to peer transfer #644

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

Open
wants to merge 21 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
4093b53
nearby share init
naveenr-egov Nov 25, 2024
315439f
updated ui and transferring down sync data
naveenr-egov Nov 28, 2024
10987ae
moved logic to bloc
naveenr-egov Dec 3, 2024
dddbda4
ui changes
naveenr-egov Dec 4, 2024
22d534c
updated hardcoded sync count, retry count and error api path
naveenr-egov Dec 5, 2024
d0a360a
Published digit_data_model version update
naveenr-egov Dec 5, 2024
fef4136
Merge branch 'refs/heads/v1.5_sync_count_patch' into near_by_share
naveenr-egov Dec 5, 2024
2260a0d
modified file structure of downsync data with batch wise
naveenr-egov Dec 6, 2024
23266f9
Final acknowledgment fixes
naveenr-egov Dec 30, 2024
9cd3f67
Modified downsync file structure
naveenr-egov Jan 2, 2025
2ddabc1
Merge branch 'refs/heads/develop' into peer_to_peer
naveenr-egov Jan 2, 2025
691e1ea
Merge branch 'refs/heads/build-apk-actions' into peer_to_peer
naveenr-egov Jan 3, 2025
76db7e7
Merge conflicts
naveenr-egov Jan 3, 2025
b2990ea
Merge branch 'refs/heads/build-apk-actions' into peer_to_peer
naveenr-egov Jan 6, 2025
1978209
Added message model and moved to enums
naveenr-egov Jan 7, 2025
8c66261
unlocalized codes display fix during login and logout
naveenr-egov Feb 17, 2025
f4f1270
Added PRODUCT as enum in beneficiary_type.dart
naveenr-egov Feb 17, 2025
68942ed
Merge branch '1.7-patch' into peer_to_peer
naveenr-egov Feb 17, 2025
a5d2b6c
fetching sender device details
naveenr-egov Feb 18, 2025
49fce8b
added check to validate selected project and boundary
naveenr-egov Feb 18, 2025
3693a0e
Added localization codes
naveenr-egov Feb 19, 2025
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
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,13 @@ class AppLocalizations {
AppLocalizationsDelegate(config, sql);

Future<bool> load() async {
_localizedStrings.clear();

final listOfLocalizations =
await LocalizationLocalRepository().returnLocalizationFromSQL(sql);

if (listOfLocalizations.isNotEmpty) {
_localizedStrings.clear();
}

_localizedStrings.addAll(listOfLocalizations);

return true;
Expand Down
Loading
Loading