feat: Implement initial authentication, multi-environment support, and core app infrastructure.
This commit is contained in:
55
pubspec.yaml
55
pubspec.yaml
@@ -53,6 +53,9 @@ dev_dependencies:
|
||||
json_serializable: ^6.9.5
|
||||
riverpod_generator: ^2.6.5
|
||||
|
||||
# Flavors
|
||||
flutter_flavorizr: ^2.2.3
|
||||
|
||||
flutter:
|
||||
uses-material-design: true
|
||||
|
||||
@@ -60,4 +63,54 @@ flutter:
|
||||
- assets/
|
||||
- assets/images/
|
||||
- assets/icons/
|
||||
- .env
|
||||
- assets/fonts/
|
||||
- .env.local
|
||||
- .env.demo
|
||||
- .env.dev
|
||||
|
||||
fonts:
|
||||
- family: Fractul
|
||||
fonts:
|
||||
- asset: assets/fonts/Fractul-Light.ttf
|
||||
weight: 300
|
||||
- asset: assets/fonts/Fractul-Regular.ttf
|
||||
weight: 400
|
||||
- asset: assets/fonts/Fractul-Medium.ttf
|
||||
weight: 500
|
||||
- asset: assets/fonts/Fractul-SemiBold.ttf
|
||||
weight: 600
|
||||
- asset: assets/fonts/Fractul-Bold.ttf
|
||||
weight: 700
|
||||
- family: SourceSerif4
|
||||
fonts:
|
||||
- asset: assets/fonts/SourceSerif4-VariableFont_opsz,wght.ttf
|
||||
|
||||
flavorizr:
|
||||
flavors:
|
||||
local:
|
||||
app:
|
||||
name: "RE-QuestN Local"
|
||||
android:
|
||||
applicationId: "com.requestn.real_estate_mobile.local"
|
||||
ios:
|
||||
bundleId: "com.requestn.realEstateMobile.local"
|
||||
buildSettings:
|
||||
DEVELOPMENT_TEAM: JKMS87XDA9
|
||||
demo:
|
||||
app:
|
||||
name: "RE-QuestN Demo"
|
||||
android:
|
||||
applicationId: "com.requestn.real_estate_mobile.demo"
|
||||
ios:
|
||||
bundleId: "com.requestn.realEstateMobile.demo"
|
||||
buildSettings:
|
||||
DEVELOPMENT_TEAM: JKMS87XDA9
|
||||
dev:
|
||||
app:
|
||||
name: "RE-QuestN Dev"
|
||||
android:
|
||||
applicationId: "com.requestn.real_estate_mobile.dev"
|
||||
ios:
|
||||
bundleId: "com.requestn.realEstateMobile.dev"
|
||||
buildSettings:
|
||||
DEVELOPMENT_TEAM: JKMS87XDA9
|
||||
|
||||
Reference in New Issue
Block a user