Fab button in new dashboard activity (#8158)

This commit is contained in:
Abhinav Gupta
2023-10-09 18:55:45 +05:30
committed by GitHub
parent b63c59c42c
commit d5cbf837fa
18 changed files with 353 additions and 31 deletions

View File

@@ -46,7 +46,8 @@ data class ActionData(
@SerializedName("action") val action: String? = null,
@SerializedName("bottomSheetData") val bottomSheetData: BottomSheetData? = null,
@SerializedName("lottieCode") val lottieCode: String? = null,
@SerializedName("secondaryUrl") val secondaryUrl: String? = null
@SerializedName("secondaryUrl") val secondaryUrl: String? = null,
@SerializedName("needsResult") val needsResult: Boolean? = null
) : NaviClickAction(), Serializable, Parcelable
data class NaviWidgetInfoClick(val widgetId: String? = null) : NaviClickAction()