get_arch_core 1.0.0 copy "get_arch_core: ^1.0.0" to clipboard
get_arch_core: ^1.0.0 copied to clipboard

outdated

flutter architecture package, Inspired by Explicit Architecture, Clean Architectures, DDD,

get_arch_core #

GetArch core package

Getting Started #

Future<void> 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 Universe #

GetArch Universe

0
likes
30
pub points
4%
popularity

Publisher

unverified uploader

flutter architecture package, Inspired by Explicit Architecture, Clean Architectures, DDD,

Repository (GitHub)
View/report issues

License

Apache-2.0 (LICENSE)

Dependencies

dartz, equatable, get_it, meta, rxdart

More

Packages that depend on get_arch_core