-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: extract atkeys file upload service from home widget
- Loading branch information
1 parent
cbed8c6
commit efed7eb
Showing
8 changed files
with
333 additions
and
274 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
16
packages/at_onboarding_flutter/lib/at_onboarding_screens.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
11
packages/at_onboarding_flutter/lib/at_onboarding_services.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
4
packages/at_onboarding_flutter/lib/at_onboarding_widgets.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'; |
Oops, something went wrong.