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:
parent
10a8cc89fe
commit
d7c0fea015
47 changed files with 1514 additions and 161 deletions
|
@ -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
|
||||
)
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue