piano
piano copied to clipboard
Size problem on Android
On IOS and web everything is working properly.
In android I found this solution (not the best but it shows at least)
in clef_painter.dart
file
final clefSymbolOffset = Platform.isAndroid
? (clef == Clef.Treble)
//Android Treble OFFSET
? 0.08
//Android OFFSET ALTO BASS
: 0.2
: (clef == Clef.Treble)
? 0.45
//ios web bass alto offset
: 0.08;
final clefSymbolScale = Platform.isAndroid
? (clef == Clef.Treble)
//android treble scale
? 1
//android bass alto scale
: 1.08
: (clef == Clef.Treble)
//ios web treble scale
? 2.35
//ios web bass alto scale
: 1.34;