mirror of
https://github.com/zoriya/react-native-svg.git
synced 2026-05-24 11:44:39 +00:00
Implement basic support for native animation of font size
This commit is contained in:
@@ -33,7 +33,7 @@ function parseFontString(font) {
|
||||
const isBold = /bold/.exec(match[1]);
|
||||
const isItalic = /italic/.exec(match[1]);
|
||||
cachedFontObjectsFromString[font] = {
|
||||
fontSize: match[2] || '12',
|
||||
fontSize: match[2] || 12,
|
||||
fontWeight: isBold ? 'bold' : 'normal',
|
||||
fontStyle: isItalic ? 'italic' : 'normal',
|
||||
fontFamily: extractSingleFontFamily(match[3]),
|
||||
|
||||
Reference in New Issue
Block a user