Skip to content

Commit

Permalink
refactor: extract atkeys file upload service from home widget
Browse files Browse the repository at this point in the history
  • Loading branch information
XavierChanth committed Nov 14, 2024
1 parent cbed8c6 commit efed7eb
Show file tree
Hide file tree
Showing 8 changed files with 333 additions and 274 deletions.
5 changes: 5 additions & 0 deletions packages/at_onboarding_flutter/lib/at_onboarding.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
library at_onboarding_legacy;

@Deprecated(
"This is a legacy export and will be removed in a future version: use at_onboarding_flutter.dart instead")
export 'src/at_onboarding.dart';
5 changes: 5 additions & 0 deletions packages/at_onboarding_flutter/lib/at_onboarding_result.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
library at_onboarding_result_legacy;

@Deprecated(
"This is a legacy export and will be removed in a future version: use at_onboarding_flutter.dart instead")
export 'src/at_onboarding_result.dart';
16 changes: 16 additions & 0 deletions packages/at_onboarding_flutter/lib/at_onboarding_screens.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
library at_onboarding_screens;

export "src/screen/at_onboarding_accounts_screen.dart";
export "src/screen/at_onboarding_activate_screen.dart";
export "src/screen/at_onboarding_backup_screen.dart";
export "src/screen/at_onboarding_generate_screen.dart";
export "src/screen/at_onboarding_home_screen.dart";
export "src/screen/at_onboarding_input_atsign_screen.dart";
export "src/screen/at_onboarding_intro_screen.dart";
export "src/screen/at_onboarding_otp_screen.dart";
export "src/screen/at_onboarding_pair_screen.dart";
export "src/screen/at_onboarding_qrcode_screen.dart";
export "src/screen/at_onboarding_reference_screen.dart";
export "src/screen/at_onboarding_reset_screen.dart";
export "src/screen/at_onboarding_start_screen.dart";
export "src/screen/at_onboarding_webview_screen.dart";
11 changes: 11 additions & 0 deletions packages/at_onboarding_flutter/lib/at_onboarding_services.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
library at_onboarding_services;

export 'src/services/at_keys_file_upload_service.dart';
export 'src/services/at_onboarding_backup_service.dart';
export 'src/services/at_onboarding_config.dart';
export 'src/services/at_onboarding_theme.dart';
export 'src/services/at_onboarding_tutorial_service.dart';
export 'src/services/backend_service.dart';
export 'src/services/free_atsign_service.dart';
export 'src/services/onboarding_service.dart';
export 'src/services/sdk_service.dart';
4 changes: 4 additions & 0 deletions packages/at_onboarding_flutter/lib/at_onboarding_widgets.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
library at_onboarding_widgets;

export 'src/widgets/at_onboarding_button.dart';
export 'src/widgets/at_onboarding_dialog.dart';
Loading

0 comments on commit efed7eb

Please sign in to comment.