undeclared identifier: 'AddLoanDialogState' #46
-
hi, Here is my button code:
thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I assume that you have a line like |
Beta Was this translation helpful? Give feedback.
I assume that you have a line like
export AddLoanDialog
in the module that contains the definition for the dialog. In order forAddLoanDialogState
to be available in other modules, you need to export it as well (soexport AddLoanDialog, AddLoanDialogState
).