Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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 packages/cli
Submodule cli updated 90 files
+4 −2 .github/workflows/release.yml
+3 −3 .github/workflows/test.yml
+222 −0 CHANGELOG.md
+19 −17 bin/stacked.dart
+80 −51 lib/src/commands/create/create_app_command.dart
+72 −54 lib/src/commands/create/create_bottom_sheet_command.dart
+4 −2 lib/src/commands/create/create_command.dart
+72 −53 lib/src/commands/create/create_dialog_command.dart
+67 −47 lib/src/commands/create/create_service_command.dart
+75 −53 lib/src/commands/create/create_view_command.dart
+115 −0 lib/src/commands/create/create_widget_command.dart
+144 −0 lib/src/commands/delete/delete_bottomsheet_command.dart
+7 −3 lib/src/commands/delete/delete_command.dart
+142 −0 lib/src/commands/delete/delete_dialog_command.dart
+78 −45 lib/src/commands/delete/delete_service_command.dart
+0 −105 lib/src/commands/delete/delete_view_commad.dart
+131 −0 lib/src/commands/delete/delete_view_command.dart
+46 −22 lib/src/commands/generate/generate_command.dart
+17 −6 lib/src/commands/update/update_command.dart
+8 −0 lib/src/constants/command_constants.dart
+33 −5 lib/src/constants/message_constants.dart
+12 −0 lib/src/exceptions/posthog_api_key_not_found_exception.dart
+5 −2 lib/src/locator.dart
+10 −0 lib/src/models/config_model.dart
+140 −62 lib/src/models/config_model.freezed.dart
+8 −3 lib/src/models/config_model.g.dart
+181 −125 lib/src/models/template_models.freezed.dart
+17 −15 lib/src/models/template_models.g.dart
+0 −173 lib/src/services/analytics_service.dart
+23 −9 lib/src/services/config_service.dart
+3 −3 lib/src/services/file_service.dart
+262 −0 lib/src/services/posthog_service.dart
+24 −9 lib/src/services/process_service.dart
+6 −2 lib/src/services/pub_service.dart
+55 −14 lib/src/services/template_service.dart
+9 −11 lib/src/templates/app/mobile/README.md.stk
+6 −15 lib/src/templates/app/mobile/lib/main.dart.stk
+7 −7 lib/src/templates/app/mobile/lib/ui/bottom_sheets/notice/notice_sheet.dart.stk
+2 −2 lib/src/templates/app/mobile/lib/ui/common/ui_helpers.dart.stk
+4 −4 lib/src/templates/app/mobile/lib/ui/dialogs/info_alert/info_alert_dialog.dart.stk
+2 −2 lib/src/templates/app/mobile/lib/ui/views/home/home_view.dart.stk
+5 −13 lib/src/templates/app/mobile/lib/ui/views/startup/startup_view.dart.stk
+11 −82 lib/src/templates/app/mobile/pubspec.yaml.stk
+9 −10 lib/src/templates/app/mobile/stacked.json.stk
+33 −0 lib/src/templates/app/mobile/test/goldens/home_view_golden_test.dart.stk
+3 −3 lib/src/templates/app/mobile/test/viewmodels/home_viewmodel_test.dart.stk
+8 −11 lib/src/templates/app/web/README.md.stk
+2 −2 lib/src/templates/app/web/lib/extensions/hover_extensions.dart.stk
+13 −24 lib/src/templates/app/web/lib/main.dart.stk
+7 −7 lib/src/templates/app/web/lib/ui/bottom_sheets/notice/notice_sheet.dart.stk
+2 −2 lib/src/templates/app/web/lib/ui/common/ui_helpers.dart.stk
+4 −4 lib/src/templates/app/web/lib/ui/dialogs/info_alert/info_alert_dialog.dart.stk
+49 −49 lib/src/templates/app/web/lib/ui/views/home/home_view.desktop.dart.stk
+2 −2 lib/src/templates/app/web/lib/ui/views/home/home_view.mobile.dart.stk
+2 −2 lib/src/templates/app/web/lib/ui/views/home/home_view.tablet.dart.stk
+5 −13 lib/src/templates/app/web/lib/ui/views/startup/startup_view.dart.stk
+2 −2 lib/src/templates/app/web/lib/ui/views/unknown/unknown_view.desktop.dart.stk
+2 −2 lib/src/templates/app/web/lib/ui/views/unknown/unknown_view.mobile.dart.stk
+2 −2 lib/src/templates/app/web/lib/ui/views/unknown/unknown_view.tablet.dart.stk
+3 −3 lib/src/templates/app/web/lib/ui/widgets/mouse_transforms/scale_on_hover.dart.stk
+2 −2 lib/src/templates/app/web/lib/ui/widgets/mouse_transforms/translate_on_hover.dart.stk
+12 −83 lib/src/templates/app/web/pubspec.yaml.stk
+10 −12 lib/src/templates/app/web/stacked.json.stk
+33 −0 lib/src/templates/app/web/test/golden/home_view_golden_test.dart.stk
+3 −3 lib/src/templates/app/web/test/viewmodels/home_viewmodel_test.dart.stk
+1 −1 lib/src/templates/app/web/web/index.html.stk
+7 −7 lib/src/templates/bottom_sheet/empty/lib/ui/bottom_sheets/generic/generic_sheet.dart.stk
+7 −7 lib/src/templates/bottom_sheet/empty/lib/ui/bottom_sheets/generic/generic_sheet_use_model.dart.stk
+26 −0 lib/src/templates/compiled_constants.dart
+31 −0 lib/src/templates/compiled_template_map.dart
+391 −406 lib/src/templates/compiled_templates.dart
+4 −4 lib/src/templates/dialog/empty/lib/ui/dialogs/generic/generic_dialog.dart.stk
+4 −4 lib/src/templates/dialog/empty/lib/ui/dialogs/generic/generic_dialog_use_model.dart.stk
+35 −2 lib/src/templates/template_constants.dart
+2 −0 lib/src/templates/template_helper.dart
+10 −0 lib/src/templates/template_render_functions.dart
+1 −0 lib/src/templates/view/empty/lib/ui/views/generic/generic_view.dart.stk
+1 −2 lib/src/templates/view/empty/lib/ui/views/generic/generic_viewmodel.dart.stk
+1 −1 lib/src/templates/view/web/lib/ui/views/generic/generic_view.desktop.dart.stk
+1 −1 lib/src/templates/view/web/lib/ui/views/generic/generic_view.mobile.dart.stk
+1 −1 lib/src/templates/view/web/lib/ui/views/generic/generic_view.tablet.dart.stk
+10 −0 lib/src/templates/widget/empty/lib/ui/widgets/common/generic/generic.dart.stk
+3 −0 lib/src/templates/widget/empty/lib/ui/widgets/common/generic/generic_model.dart.stk
+22 −0 lib/src/templates/widget/empty/lib/ui/widgets/common/generic/generic_use_model.dart.stk
+11 −0 lib/src/templates/widget/empty/test/widget_models/generic_model_test.dart.stk
+14 −13 pubspec.yaml
+7 −12 test/helpers/test_helpers.dart
+872 −166 test/helpers/test_helpers.mocks.dart
+40 −27 test/services/config_service_test.dart
+7 −7 test/services/file_service_test.dart
2 changes: 1 addition & 1 deletion packages/firebase_auth
Submodule firebase_auth updated 105 files
2 changes: 1 addition & 1 deletion packages/generator
Submodule generator updated 106 files
2 changes: 1 addition & 1 deletion packages/gql
2 changes: 1 addition & 1 deletion packages/stacked
Submodule stacked updated 192 files