v0.1.2flutter_chord
Flutter用の歌詞とコードパーサーおよびレンダラー。トランスポーズ機能と自動スクロール機能も搭載しています。
40いいね 9830日間ダウンロード150Pub ポイント
AndroidiOSWebmacOSWindowsLinux
Flutter用の歌詞とコードパーサー
{"sdk":"flutter"}{"sdk":"flutter"}^5.0.17以下は英語原文のスナップショットです。最新版は GitHub をご覧ください。
Chord parser for Flutter apps.
https://raw.githubusercontent.com/paurakhsharma/flutter_chord/main/screenshot.png
1) Render the Lyrics and Chords directly.
final textStyle = TextStyle(fontSize: 18, color: Colors.white);
final chordStyle = TextStyle(fontSize: 20, color: Colors.green);
final lyrics = '''
[C]Give me Freedom, [F]Give me fire
[Am] Give me reason, [G]Take me higher
''';
@override
Widget build(BuildContext context) {
return LyricsRenderer(
lyrics: _lyrics,
textStyle: textStyle,
chordStyle: chordStyle,
widgetPadding: 50,
onTapChord: (String chord) {
print('pressed chord: $chord');
},
transposeIncrement: 0,
scrollSpeed: 0,
);
}
2. Get a parsed ChordLyricsDocument and style it as you like.
final textStyle = TextStyle(fontSize: 18, color: Colors.white);
final chordStyle = TextStyle(fontSize: 20, color: Colors.green);
final lyrics = '''
[C]Give me Freedom , [F]Give me fire
[Am] Give me reason , [G]Take me higher
''';
ChordProcessor _chordProcessor = ChordProcessor(context);
ChordLyricsDocument chordLyricsDocument = _chordProcessor.processText(
text: lyrics,
lyricsStyle: textStyle,
chordStyle: chordStyle,
transposeIncrement: 0,
);