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
Currently the instructions() function can be used to access instructions inside the fragment:
instructions()
@Adaptive fun a(hover : Boolean, instructions : AdaptiveInstructionGroup, @Adaptive b : () -> Unit) { if (hover) { box(instructions()) { b() } } }
However, this is inconvenient as the parameter name is also instructions and import of the function cannot be done easily because of this.
instructions
The text was updated successfully, but these errors were encountered:
toth-istvan-zoltan
No branches or pull requests
Currently the
instructions()
function can be used to access instructions inside the fragment:However, this is inconvenient as the parameter name is also
instructions
and import of the function cannot be done easily because of this.The text was updated successfully, but these errors were encountered: