| Title | Author | Created | Published | Tags | | ------------------------------- | ---------------------------- | ----------------- | ----------------- | ------------------------ | | Key Packages (Flutter + Python) | <ul><li>Jon Marien</li></ul> | February 02, 2025 | February 02, 2025 | [[#personal\|#personal]] | ```python # Flutter Deps dependencies: flutter_modular: ^5.0.0 # Modular architecture riverpod: ^2.0.0 # State management retrofit: ^4.0.0 # API client camera: ^0.10.0 # Barcode/Image scanning image_picker: ^1.1.2 http: ^1.3.0 freezed: ^2.5.8 hive: ^2.2.3 get_it: ^7.6.7 dio: ^5.8.0+1 go_router: ^13.0.0 # Use latest stable version shared_preferences: ^2.2.2 # Use latest stable version ``` ```python # Python Deps # FastAPI base requirements fastapi = "^0.95.0" uvicorn = "^0.21.1" pydantic = "^1.10.7" python-jose = "^3.3.0" # JWT authentication ```