-
Notifications
You must be signed in to change notification settings - Fork 29
Open
Description
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;Metadata
Metadata
Assignees
Labels
No labels