modularPatternInitDirectoryStructor property
String
get
modularPatternInitDirectoryStructor
Implementation
static String get modularPatternInitDirectoryStructor => """/lib
│── /App
│ ├── /core
│ │ ├── /constants
│ │ │ ├── color_constants.dart
│ │ │ ├── url_manager.dart
│ │ ├── /enums
│ │ │ ├── enums.dart
│ │ ├── /provider
│ │ │ ├── api_provider.dart
│ │ │ ├── preference_provider.dart
│ │ ├── /theme
│ │ │ ├── theme.dart
│ │ ├── /utils
│ │ │ ├── app_text_style.dart
│ │ │ ├── asset_images.dart
│ │ │ ├── common.dart
│ │ │ ├── date_picker_utils.dart
│ │ │ ├── media_utils.dart
│ ├── /routes
│ │ ├── app_routes.dart
│ │ ├── route_navigator.dart
│ ├── /modules
│ │ ├── /dashboard
│ │ │ ├── /home_screen
│ │ │ │ ├── /controller
│ │ │ │ │ ├── home_screen_controller.dart
│ │ │ │ ├── /repository
│ │ │ │ │ ├── home_screen_repository.dart
│ │ │ │ ├── /view
│ │ │ │ │ ├── home_screen.dart
│ │ │ │ ├── /binding
│ │ │ │ │ ├── home_screen_binding.dart
│ │ ├── /shared
│ │ │ ├── /base_screen
│ │ │ │ ├── /view
│ │ │ │ │ ├── base_dialog.dart
│ │ │ │ │ ├── base_screen.dart
│ │ │ │ │ ├── custom_appbar.dart
│ │ │ ├── /widgets
│ │ │ │ ├── app_checkbox.dart
│ │ │ │ ├── app_network_image.dart
│ │ │ │ ├── app_radio_button.dart
│ │ │ │ ├── app_textfield.dart
│ │ │ │ ├── back_arrow.dart
│ │ │ │ ├── empty_view.dart
│ │ │ │ ├── search_field.dart
│ │ ├── /splash
│ │ │ ├── /splash_screen
│ │ │ │ ├── /view
│ │ │ │ │ ├── splash_screen.dart
│ ├── app.dart
│ ├── main.dart
""";