-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpubspec.yaml
More file actions
40 lines (27 loc) · 774 Bytes
/
pubspec.yaml
File metadata and controls
40 lines (27 loc) · 774 Bytes
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
name: quote_builder_app
description: "A professional product quote builder application."
# Prevent accidental publishing to pub.dev
publish_to: 'none'
version: 1.0.0+1
environment:
sdk: '>=3.0.0 <4.0.0' # Requires Flutter 3.10 or newer for useMaterial3
dependencies:
flutter:
sdk: flutter
# --- Our Dependencies ---
# For state management
provider: ^6.1.2
# For currency/number formatting (e.g., $2,362.50)
intl: ^0.19.0
# For generating unique IDs for line items
uuid: ^4.4.0
# For safe list operations (like .firstWhereOrNull)
collection: ^1.18.0
# --- End of Our Dependencies ---
cupertino_icons: ^1.0.2
dev_dependencies:
flutter_test:
sdk: flutter
flutter_lints: ^3.0.0
flutter:
uses-material-design: true