Open lmzhu opened 4 years ago
调试发现,安卓下canvas.fillText绘制的文本line-height强制为1 IOS下强制为normal 不得不在使用的时候做适配 const createHiloFontSize = (fontSize) => `${fontSize}px/${isIOS() ? 'normal' : `${fontSize}px`}`; 建议优化Hilo.Text.measureFontHeight 方法来修复问题
const createHiloFontSize = (fontSize) => `${fontSize}px/${isIOS() ? 'normal' : `${fontSize}px`}`;
字体大小怎么控制,setFont设置根本没用啊。。
调试发现,安卓下canvas.fillText绘制的文本line-height强制为1
IOS下强制为normal
不得不在使用的时候做适配
const createHiloFontSize = (fontSize) => `${fontSize}px/${isIOS() ? 'normal' : `${fontSize}px`}`;
建议优化Hilo.Text.measureFontHeight 方法来修复问题