This is the source code of the minimalist custom tracking app Trackord. You can also install it from the App Store.
- This is a Flutter project, so you need to install the Flutter SDK. Please follow the official Flutter guide to configure your system.
- Clone or download this repository and open the folder in VSCode.
- Run
flutter pub get
in the VSCode terminal to fetch dependencies. - Run
flutter gen-l10n
in the VSCode terminal to generate localization files. - [Optional] Run
dart run flutter_native_splash:create
in the VSCode terminal to generate a splash screen. - [Optional] Run
dart run flutter_launcher_icons:generate
in the VSCode terminal to generate the app icon. - Install a compatible emulator (Android or iOS) and run the app.
- Install pucelle.run-on-save
- Copy the following configuration into VSCode's settings.json
"runOnSave.commands": [ { "match": ".arb", "command": "flutter gen-l10n", "runIn": "terminal", }, ], "runOnSave.defaultRunIn": "terminal", "runOnSave.onlyRunOnManualSave": true,
这是极简风格自定义记录软件Trackord的源码,也可前往App Store安装
- 此系Flutter项目,需安装Flutter SDK,请根据Flutter官网和系统配置好相关环境。
- Clone或者下载本repo,并用VSCode打开文件夹。
- 在VSCode Terminal运行
flutter pub get
获取相关依赖。 - 在VSCode Terminal运行
flutter gen-l10n
生成本地化文件。 - [可选] 在VSCode Terminal运行
dart run flutter_native_splash:create
生成启动画面 - [可选] 在VSCode Terminal运行
dart run flutter_launcher_icons:generate
生成app图标 - 安装相应模拟器(安卓或者iOS)并运行。
- 安装 pucelle.run-on-save
- 复制以下配置到 VSCode 的 settings.json
"runOnSave.commands": [ { "match": ".arb", "command": "flutter gen-l10n", "runIn": "terminal", }, ], "runOnSave.defaultRunIn": "terminal", "runOnSave.onlyRunOnManualSave": true,