# get_arch_core **Repository Path**: hu_wt/get_arch_core ## Basic Information - **Project Name**: get_arch_core - **Description**: GetArch core package - **Primary Language**: Dart - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-17 - **Last Updated**: 2020-12-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # get_arch_core GetArch core package ## Getting Started ```dart Future main() async { WidgetsFlutterBinding.ensureInitialized(); await GetArchApplication.run( EnvConfig( 'Your App Name', 'Lib Version / App Version', DateTime(2020, 6, 30), EnvSing.prod, ), printConfig: !kReleaseMode, packages: [ // ... other GetArch package/ app ... ]); runApp(MyApp()); } ``` ## Complete project structure: lib |-- domain | |-- entity ... | |-- data_model ... | |-- errors ... | '-- failures ... |-- application | |-- usecase ... | '-- i_repo ... |-- interfaces | |-- dto ... | |-- view_mdoel ... | |-- i_api ... | |-- i_data_source ... | '-- repo_impl ... |-- infrastructure | |-- ui | | |-- page ... | | '-- view ... | |-- api_impl ... | '-- data_source_impl ... |-- profile | |-- config_model.dart | |-- xxx_package.dart | '-- ... '-- main.dart ## GetArch ![GetArch](GetArch.png) ## GetArch Universe ![GetArch Universe](GetArchUniverse.png)