We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@Entry struct Test { @Builder textBuilder() { Text('123') // IBestIcon({ name: this.showDetail ? 'arrow-up' : 'arrow-down' }); } build() { Column() { IBestDivider({ dashed: true, lineColor: '#CFCFCF', textBuilder: this.textBuilder(), texFontSize: 16 }) }; } }
The text was updated successfully, but these errors were encountered:
textBuilder: this.textBuilder() 你换种写法试试 我之前遇到过 别执行这个函数
Sorry, something went wrong.
使用箭头函数
No branches or pull requests
@Entry struct Test { @Builder textBuilder() { Text('123') // IBestIcon({ name: this.showDetail ? 'arrow-up' : 'arrow-down' }); } build() { Column() { IBestDivider({ dashed: true, lineColor: '#CFCFCF', textBuilder: this.textBuilder(), texFontSize: 16 }) }; } }
The text was updated successfully, but these errors were encountered: