setFontSize method
设置字体大小
fontSize 字体大小(单位: sp)
Implementation
Future<void> setFontSize(int fontSize) async {
if (!_checkInitialized('setFontSize')) return;
try {
await PangrowthContent.invoke('storyReaderSetFontSize', {
'readerId': _readerId,
'fontSize': fontSize,
});
} catch (e) {
debugPrint('StoryReaderController: setFontSize失败: $e');
}
}