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
アナリティクスのシェアイベントが取れない。
lib/widgets/button/share_work_button.dart https://github.com/aipictors/app/blob/4598f7fe97672514d4b2491bfc070b4e1be84598/lib/widgets/button/share_work_button.dart#L35C17
lib/widgets/list_tile/modal_share_list_tile.dart
app/lib/widgets/list_tile/modal_share_list_tile.dart
Line 29 in 4598f7f
合わせて、ContentTypeのenumを追加します。
enum ContentType { user('user'), work('work'), other('other'); const ContentType(this.value); final String value; static ContentType fromText(String value) { for (final item in ContentType.values) { if (item.value == value) { return item; } } return ContentType.other; } }
The text was updated successfully, but these errors were encountered:
haruharu-1105
No branches or pull requests
どのような問題がありますか?
アナリティクスのシェアイベントが取れない。
lib/widgets/button/share_work_button.dart
https://github.com/aipictors/app/blob/4598f7fe97672514d4b2491bfc070b4e1be84598/lib/widgets/button/share_work_button.dart#L35C17
lib/widgets/list_tile/modal_share_list_tile.dart
app/lib/widgets/list_tile/modal_share_list_tile.dart
Line 29 in 4598f7f
どうすれば良いですか?
合わせて、ContentTypeのenumを追加します。
The text was updated successfully, but these errors were encountered: