├── module_splash ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── lib │ ├── app │ │ └── splash_module.dart │ └── module_splash.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── app │ └── data │ └── repositories │ ├── auth_repository_test.dart │ └── auth_repository_test.mocks.dart ├── module_splash_domain ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── lib │ ├── app │ │ └── domain │ │ │ ├── errors │ │ │ └── errors.dart │ │ │ ├── repositories │ │ │ └── auth_repository_interface.dart │ │ │ └── usecases │ │ │ ├── get_logged_user.dart │ │ │ └── interfaces │ │ │ └── get_logged_user_interface.dart │ └── module_splash_domain.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── app │ └── domain │ └── usecases │ ├── get_logged_user_test.dart │ └── get_logged_user_test.mocks.dart ├── module_splash_infra ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── lib │ ├── app │ │ └── data │ │ │ └── repositories │ │ │ └── auth_repository.dart │ └── module_splash_infra.dart ├── pubspec.lock └── pubspec.yaml └── module_splash_presenter ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── lib ├── app │ └── presenter │ │ └── pages │ │ └── splash │ │ ├── components │ │ └── ioasys_logo_widget.dart │ │ ├── splash_controller.dart │ │ └── splash_page.dart └── module_splash_presenter.dart ├── pubspec.lock └── pubspec.yaml /module_splash/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash/.gitignore -------------------------------------------------------------------------------- /module_splash/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash/.metadata -------------------------------------------------------------------------------- /module_splash/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /module_splash/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /module_splash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash/README.md -------------------------------------------------------------------------------- /module_splash/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash/analysis_options.yaml -------------------------------------------------------------------------------- /module_splash/lib/app/splash_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash/lib/app/splash_module.dart -------------------------------------------------------------------------------- /module_splash/lib/module_splash.dart: -------------------------------------------------------------------------------- 1 | export 'app/splash_module.dart'; 2 | -------------------------------------------------------------------------------- /module_splash/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash/pubspec.lock -------------------------------------------------------------------------------- /module_splash/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash/pubspec.yaml -------------------------------------------------------------------------------- /module_splash/test/app/data/repositories/auth_repository_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash/test/app/data/repositories/auth_repository_test.dart -------------------------------------------------------------------------------- /module_splash/test/app/data/repositories/auth_repository_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash/test/app/data/repositories/auth_repository_test.mocks.dart -------------------------------------------------------------------------------- /module_splash_domain/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash_domain/.gitignore -------------------------------------------------------------------------------- /module_splash_domain/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash_domain/.metadata -------------------------------------------------------------------------------- /module_splash_domain/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /module_splash_domain/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /module_splash_domain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash_domain/README.md -------------------------------------------------------------------------------- /module_splash_domain/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash_domain/analysis_options.yaml -------------------------------------------------------------------------------- /module_splash_domain/lib/app/domain/errors/errors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash_domain/lib/app/domain/errors/errors.dart -------------------------------------------------------------------------------- /module_splash_domain/lib/app/domain/repositories/auth_repository_interface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash_domain/lib/app/domain/repositories/auth_repository_interface.dart -------------------------------------------------------------------------------- /module_splash_domain/lib/app/domain/usecases/get_logged_user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash_domain/lib/app/domain/usecases/get_logged_user.dart -------------------------------------------------------------------------------- /module_splash_domain/lib/app/domain/usecases/interfaces/get_logged_user_interface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash_domain/lib/app/domain/usecases/interfaces/get_logged_user_interface.dart -------------------------------------------------------------------------------- /module_splash_domain/lib/module_splash_domain.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash_domain/lib/module_splash_domain.dart -------------------------------------------------------------------------------- /module_splash_domain/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash_domain/pubspec.lock -------------------------------------------------------------------------------- /module_splash_domain/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash_domain/pubspec.yaml -------------------------------------------------------------------------------- /module_splash_domain/test/app/domain/usecases/get_logged_user_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash_domain/test/app/domain/usecases/get_logged_user_test.dart -------------------------------------------------------------------------------- /module_splash_domain/test/app/domain/usecases/get_logged_user_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash_domain/test/app/domain/usecases/get_logged_user_test.mocks.dart -------------------------------------------------------------------------------- /module_splash_infra/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash_infra/.gitignore -------------------------------------------------------------------------------- /module_splash_infra/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash_infra/.metadata -------------------------------------------------------------------------------- /module_splash_infra/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /module_splash_infra/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /module_splash_infra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash_infra/README.md -------------------------------------------------------------------------------- /module_splash_infra/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash_infra/analysis_options.yaml -------------------------------------------------------------------------------- /module_splash_infra/lib/app/data/repositories/auth_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash_infra/lib/app/data/repositories/auth_repository.dart -------------------------------------------------------------------------------- /module_splash_infra/lib/module_splash_infra.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash_infra/lib/module_splash_infra.dart -------------------------------------------------------------------------------- /module_splash_infra/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash_infra/pubspec.lock -------------------------------------------------------------------------------- /module_splash_infra/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash_infra/pubspec.yaml -------------------------------------------------------------------------------- /module_splash_presenter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash_presenter/.gitignore -------------------------------------------------------------------------------- /module_splash_presenter/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash_presenter/.metadata -------------------------------------------------------------------------------- /module_splash_presenter/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /module_splash_presenter/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /module_splash_presenter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash_presenter/README.md -------------------------------------------------------------------------------- /module_splash_presenter/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash_presenter/analysis_options.yaml -------------------------------------------------------------------------------- /module_splash_presenter/lib/app/presenter/pages/splash/components/ioasys_logo_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash_presenter/lib/app/presenter/pages/splash/components/ioasys_logo_widget.dart -------------------------------------------------------------------------------- /module_splash_presenter/lib/app/presenter/pages/splash/splash_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash_presenter/lib/app/presenter/pages/splash/splash_controller.dart -------------------------------------------------------------------------------- /module_splash_presenter/lib/app/presenter/pages/splash/splash_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash_presenter/lib/app/presenter/pages/splash/splash_page.dart -------------------------------------------------------------------------------- /module_splash_presenter/lib/module_splash_presenter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash_presenter/lib/module_splash_presenter.dart -------------------------------------------------------------------------------- /module_splash_presenter/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash_presenter/pubspec.lock -------------------------------------------------------------------------------- /module_splash_presenter/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/microfrontend_module_splash/HEAD/module_splash_presenter/pubspec.yaml --------------------------------------------------------------------------------