diff --git a/designsystem/src/main/kotlin/com/natura/android/appbartop/StandardAppBarTop.kt b/designsystem/src/main/kotlin/com/natura/android/appbartop/StandardAppBarTop.kt index 5479f236..67ac2d4d 100644 --- a/designsystem/src/main/kotlin/com/natura/android/appbartop/StandardAppBarTop.kt +++ b/designsystem/src/main/kotlin/com/natura/android/appbartop/StandardAppBarTop.kt @@ -55,7 +55,7 @@ class StandardAppBarTop(context: Context, attrs: AttributeSet) : AppBarLayout(co private var proeminentContent: Boolean = false private var contentPosition: Int = LEFT - private val toolbar by lazy { findViewById(R.id.toolbar) } + val toolbar: Toolbar by lazy { findViewById(R.id.toolbar) } private val actionLeftContainer by lazy { findViewById(R.id.actionLeftContainer) } private val actionRightContainer by lazy { findViewById(R.id.actionRightContainer) } private val actionCenterContainer by lazy { findViewById(R.id.actionCenterContainer) }