Replace splash_chat_hebat with assets/icons/logo.png on @color/ic_launcher_background (customer #FF699F pink, mitra #FFFFFF white) across launch_background.xml (x2) and values-v31/styles.xml in both apps; copy logo.png into res/drawable. The mitra Flutter /splash screen still showed the old image — repoint it to assets/icons/logo.png (add assets/icons/ to mitra pubspec), keeping the route (it is the auth-loading gate). Native + flutter splash now match the launcher icon. Old splash_chat_hebat.png left in place but unused. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
94 lines
2.6 KiB
YAML
94 lines
2.6 KiB
YAML
name: mitra_app
|
|
description: Halo Bestie - Mitra App
|
|
|
|
publish_to: 'none'
|
|
version: 1.0.0+1
|
|
|
|
environment:
|
|
sdk: '>=3.0.0 <4.0.0'
|
|
|
|
dependencies:
|
|
flutter:
|
|
sdk: flutter
|
|
|
|
# Firebase (Messaging only — Auth dropped in Phase 3.4, self-managed JWT now)
|
|
firebase_core: ^2.27.1
|
|
firebase_messaging: ^14.7.15
|
|
|
|
# Secure token storage (refresh + access)
|
|
flutter_secure_storage: ^9.2.2
|
|
|
|
# HTTP & WebSocket
|
|
dio: ^5.4.3
|
|
web_socket_channel: ^2.4.5
|
|
|
|
# State management
|
|
flutter_riverpod: ^2.6.1
|
|
hooks_riverpod: ^2.6.1
|
|
riverpod_annotation: ^2.6.1
|
|
flutter_hooks: ^0.20.5
|
|
|
|
# Navigation
|
|
go_router: ^13.2.1
|
|
flutter_local_notifications: ^21.0.0
|
|
url_launcher: ^6.3.0
|
|
# Brand glyphs (WhatsApp, Telegram) for the Profil menu. Material has
|
|
# no built-in brand icons. Ships an icon font, no SVG plumbing needed.
|
|
font_awesome_flutter: ^10.7.0
|
|
|
|
dev_dependencies:
|
|
flutter_test:
|
|
sdk: flutter
|
|
flutter_lints: ^3.0.0
|
|
riverpod_generator: ^2.6.2
|
|
build_runner: ^2.4.13
|
|
custom_lint: ^0.7.0
|
|
riverpod_lint: ^2.6.2
|
|
# Generates launcher icons for Android + iOS from a single source PNG.
|
|
# Config block below; run `dart run flutter_launcher_icons` to regenerate.
|
|
flutter_launcher_icons: ^0.13.1
|
|
# In-repo lint rules — shared with client_app from the repo root. Adds
|
|
# the `no_ref_in_dispose` rule and any future repo-wide guardrails.
|
|
# See halo_lints/lib/halo_lints.dart and mitra_app/CLAUDE.md → Pitfalls.
|
|
halo_lints:
|
|
path: ../halo_lints
|
|
|
|
# Launcher-icon config. White background per the design-system rule
|
|
# documented in client_app/lib/core/theme/halo_tokens.dart: when the logo
|
|
# is full-color (mitra logo is pink on transparent), use surface #FFFFFF.
|
|
# Monochrome/white logos use brandLogoBg #FF699F (see client_app config).
|
|
flutter_launcher_icons:
|
|
android: true
|
|
ios: true
|
|
image_path: "assets/icons/logo.png"
|
|
remove_alpha_ios: true
|
|
background_color_ios: "#FFFFFF"
|
|
min_sdk_android: 24
|
|
adaptive_icon_background: "#FFFFFF"
|
|
adaptive_icon_foreground: "assets/icons/logo.png"
|
|
|
|
flutter:
|
|
uses-material-design: true
|
|
assets:
|
|
- assets/images/
|
|
- assets/images/splash/
|
|
- assets/icons/
|
|
- assets/fonts/
|
|
|
|
fonts:
|
|
- family: BricolageGrotesque
|
|
fonts:
|
|
- asset: assets/fonts/BricolageGrotesque-Variable.ttf
|
|
- family: Poppins
|
|
fonts:
|
|
- asset: assets/fonts/Poppins-Regular.ttf
|
|
- asset: assets/fonts/Poppins-Medium.ttf
|
|
weight: 500
|
|
- asset: assets/fonts/Poppins-SemiBold.ttf
|
|
weight: 600
|
|
- asset: assets/fonts/Poppins-Bold.ttf
|
|
weight: 700
|
|
- family: JetBrainsMono
|
|
fonts:
|
|
- asset: assets/fonts/JetBrainsMono-Variable.ttf
|