-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpubspec.yaml
More file actions
49 lines (40 loc) · 1.22 KB
/
pubspec.yaml
File metadata and controls
49 lines (40 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: flutter_modular_architecture
description: Sample project of a modular architecture for Flutter apps
publish_to: 'none' # Remove this line if you wish to publish to pub.dev
version: 1.0.0+1
environment:
sdk: ">=2.16.2 <3.0.0"
dependencies:
flutter:
sdk: flutter
cupertino_icons: ^1.0.2
get_it: ^7.2.0
# Shared
_core:
path: packages/shared/all/core
_intent_launcher:
path: packages/shared/features/intent_launcher
# Use cases
_bike_services_use_cases:
path: packages/use_cases/bike_services
_bike_services_use_cases_real_adapters:
path: packages/use_cases/bike_services/packages/real_adapters
_bike_stations_use_cases:
path: packages/use_cases/bike_stations
_bike_stations_use_cases_real_adapters:
path: packages/use_cases/bike_stations/packages/real_adapters
_location_use_cases:
path: packages/use_cases/location
_location_use_cases_real_adapters:
path: packages/use_cases/location/packages/real_adapters
# Features
_bike_services_features:
path: packages/features/bike_services
_bike_stations_features:
path: packages/features/bike_stations
dev_dependencies:
flutter_test:
sdk: flutter
flutter_lints: ^1.0.0
flutter:
uses-material-design: true