1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

DROID-1432 Template | Enhancement | Flow in Sets/Collections (#266)

This commit is contained in:
Konstantin Ivanov 2023-08-07 16:40:07 +02:00 committed by GitHub
parent 10a8cc89fe
commit d7c0fea015
Signed by: github
GPG key ID: 4AEE18F83AFDEB23
47 changed files with 1514 additions and 161 deletions

View file

@ -62,7 +62,8 @@ fun StubObjectType(
iconEmoji: String? = null,
isReadOnly: Boolean? = null,
isHidden: Boolean? = null,
sourceObject: Id? = null
sourceObject: Id? = null,
recommendedLayout: Double? = null
): ObjectWrapper.Type = ObjectWrapper.Type(
map = mapOf(
Relations.ID to id,
@ -76,6 +77,7 @@ fun StubObjectType(
Relations.ICON_EMOJI to iconEmoji,
Relations.IS_READ_ONLY to isReadOnly,
Relations.IS_HIDDEN to isHidden,
Relations.SOURCE_OBJECT to sourceObject
Relations.SOURCE_OBJECT to sourceObject,
Relations.RECOMMENDED_LAYOUT to recommendedLayout
)
)