# convergence_media **Repository Path**: yang-lile/convergence_media ## Basic Information - **Project Name**: convergence_media - **Description**: 一个融媒体软件。使用riverpod架构。 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-10-15 - **Last Updated**: 2024-01-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Convergence Media ![coverage][coverage_badge] [![style: very good analysis][very_good_analysis_badge]][very_good_analysis_link] [![License: MIT][license_badge]][license_link] Generated by the [Very Good CLI][very_good_cli_link] 🤖 A Very Good Project created by Very Good CLI. --- ## Getting Started 🚀 This project contains 3 flavors: - development - staging - production To run the desired flavor either use the launch configuration in VSCode/Android Studio or use the following commands: ```sh # Development $ flutter run --flavor development --target lib/main_development.dart # Staging $ flutter run --flavor staging --target lib/main_staging.dart # Production $ flutter run --flavor production --target lib/main_production.dart ``` _\*Convergence Media works on iOS, Android, Web, and Windows._ --- ## Running Tests 🧪 To run all unit and widget tests use the following command: ```sh $ flutter test --coverage --test-randomize-ordering-seed random ``` To view the generated coverage report you can use [lcov](https://github.com/linux-test-project/lcov). ```sh # Generate Coverage Report $ genhtml coverage/lcov.info -o coverage/ # Open Coverage Report $ open coverage/index.html ``` --- ## Working with Translations 🌐 This project relies on [flutter_localizations][flutter_localizations_link] and follows the [official internationalization guide for Flutter][internationalization_link]. ### Adding Strings 1. To add a new localizable string, open the `app_en.arb` file at `lib/l10n/arb/app_en.arb`. ```arb { "@@locale": "en", "counterAppBarTitle": "Counter", "@counterAppBarTitle": { "description": "Text shown in the AppBar of the Counter Page" } } ``` 2. Then add a new key/value and description ```arb { "@@locale": "en", "counterAppBarTitle": "Counter", "@counterAppBarTitle": { "description": "Text shown in the AppBar of the Counter Page" }, "helloWorld": "Hello World", "@helloWorld": { "description": "Hello World Text" } } ``` 3. Use the new string ```dart import 'package:convergence_media/l10n/l10n.dart'; @override Widget build(BuildContext context) { final l10n = context.l10n; return Text(l10n.helloWorld); } ``` ### Adding Supported Locales Update the `CFBundleLocalizations` array in the `Info.plist` at `ios/Runner/Info.plist` to include the new locale. ```xml ... CFBundleLocalizations en es ... ``` ### Adding Translations 1. For each supported locale, add a new ARB file in `lib/l10n/arb`. ``` ├── l10n │ ├── arb │ │ ├── app_en.arb │ │ └── app_es.arb ``` 2. Add the translated strings to each `.arb` file: `app_en.arb` ```arb { "@@locale": "en", "counterAppBarTitle": "Counter", "@counterAppBarTitle": { "description": "Text shown in the AppBar of the Counter Page" } } ``` `app_es.arb` ```arb { "@@locale": "es", "counterAppBarTitle": "Contador", "@counterAppBarTitle": { "description": "Texto mostrado en la AppBar de la página del contador" } } ``` ### Generating Translations To use the latest translations changes, you will need to generate them: 1. Generate localizations for the current project: ```sh flutter gen-l10n --arb-dir="lib/l10n/arb" ``` Alternatively, run `flutter run` and code generation will take place automatically. [coverage_badge]: coverage_badge.svg [flutter_localizations_link]: https://api.flutter.dev/flutter/flutter_localizations/flutter_localizations-library.html [internationalization_link]: https://flutter.dev/docs/development/accessibility-and-localization/internationalization [license_badge]: https://img.shields.io/badge/license-MIT-blue.svg [license_link]: https://opensource.org/licenses/MIT [very_good_analysis_badge]: https://img.shields.io/badge/style-very_good_analysis-B22C89.svg [very_good_analysis_link]: https://pub.dev/packages/very_good_analysis [very_good_cli_link]: https://github.com/VeryGoodOpenSource/very_good_cli ## 开发手册 ### 代码规范 要求 0 error, 0 warning, 0 tip。这是基本的要求,数据类、特别是生成的代码由于没法避免代码格式问题,可以选择在 analysis_options.yaml 文件中进行排除。 ## 技术选型 在 AppConfigModel 中记录了软件运行时的基础配置信息,这些信息可以使用 shared_preferences 来存储, 但是使用 isar 数据库存储可以直接在调试过程中进行查看,更加直观可用。 ### 软件架构 软件采用 riverpod 架构,可以在 [architecture-riverpod] 中查看学习。 ### 软件数据流概述 软件有一个唯一数据源 AppConfigModel 可以使用 0 索引去直接访问,一般建议通过在领域层注入 appConfigRepositoryProvider 的依赖(因为获取 AppConfigModel 的存储库层本身已经是一个 Repository 不适合与同一层级的存储库相互依赖),所以在领域层中需要这样去处理数据。 当然也可以直接通过在 Repository 中注入 appIsarProvider,这样可以减少复杂的领域层代码,而无感的在存储层获取到应用配置数据。代价是由于直接依赖,很容易控制不好是否需要处理业务逻辑。而且需要编写重复的数据获取代码。 [architecture-riverpod]: https://codewithandrea.com/articles/flutter-app-architecture-riverpod-introduction/