├── .fvmrc ├── .github └── workflows │ └── dart.yml ├── .gitignore ├── .metadata ├── .vscode ├── launch.json └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── README_CN.md ├── analysis_options.yaml ├── lib ├── Lyricxx.dart └── lyric_xx.dart ├── pubspec.lock ├── pubspec.yaml ├── script └── push.bat └── test └── lyric_xx_test.dart /.fvmrc: -------------------------------------------------------------------------------- 1 | { 2 | "flutter": "3.24.5" 3 | } -------------------------------------------------------------------------------- /.github/workflows/dart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolight7/lyric_xx/HEAD/.github/workflows/dart.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolight7/lyric_xx/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolight7/lyric_xx/HEAD/.metadata -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolight7/lyric_xx/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "dart.flutterSdkPath": ".fvm/versions/3.24.5" 3 | } -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolight7/lyric_xx/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolight7/lyric_xx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolight7/lyric_xx/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolight7/lyric_xx/HEAD/README_CN.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolight7/lyric_xx/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /lib/Lyricxx.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolight7/lyric_xx/HEAD/lib/Lyricxx.dart -------------------------------------------------------------------------------- /lib/lyric_xx.dart: -------------------------------------------------------------------------------- 1 | library lyric_xx; 2 | 3 | export 'Lyricxx.dart'; 4 | -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolight7/lyric_xx/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolight7/lyric_xx/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /script/push.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolight7/lyric_xx/HEAD/script/push.bat -------------------------------------------------------------------------------- /test/lyric_xx_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolight7/lyric_xx/HEAD/test/lyric_xx_test.dart --------------------------------------------------------------------------------