-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Remove SpacerHorizontal & SpacerVertical"
This reverts commit 21aef43.
- Loading branch information
1 parent
462c441
commit 6e68ac8
Showing
3 changed files
with
54 additions
and
3 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
concrete/src/main/kotlin/glass/yasan/concrete/component/SpacerHorizontal.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package glass.yasan.concrete.component | ||
|
||
import androidx.compose.runtime.Composable | ||
import androidx.compose.ui.unit.Dp | ||
import androidx.compose.ui.unit.dp | ||
|
||
@Composable | ||
public fun SpacerHorizontal( | ||
width: Dp, | ||
) { | ||
Spacer( | ||
width = width, | ||
height = 0.dp, | ||
) | ||
} |
15 changes: 15 additions & 0 deletions
15
concrete/src/main/kotlin/glass/yasan/concrete/component/SpacerVertical.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package glass.yasan.concrete.component | ||
|
||
import androidx.compose.runtime.Composable | ||
import androidx.compose.ui.unit.Dp | ||
import androidx.compose.ui.unit.dp | ||
|
||
@Composable | ||
public fun SpacerVertical( | ||
height: Dp, | ||
) { | ||
Spacer( | ||
width = 0.dp, | ||
height = height, | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters