Skip to content

Commit

Permalink
Merge tag 'v1.1.0' into develop
Browse files Browse the repository at this point in the history
Tagging hotfix v1.1.0 v1.1.0
  • Loading branch information
mshdabiola committed May 20, 2024
2 parents 9742d8c + 923ff43 commit 3c33d8c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composeApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ plugins {
}

group = "com.mshdabiola.skeletonapp"
version = "1.0.9"
version = "1.1.0"

dependencies {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ fun mainApp() {
position = WindowPosition.Aligned(Alignment.Center),
)

val version = "1.0.9"
val version = "1.1.0"
Window(
onCloseRequest = ::exitApplication,
title = "$appName v$version",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
package com.mshdabiola.designsystem

import androidx.compose.foundation.ExperimentalFoundationApi
import androidx.compose.foundation.text2.input.TextFieldState
import androidx.compose.runtime.Composable
import androidx.compose.ui.tooling.preview.Preview
import com.mshdabiola.designsystem.component.SkTextField

@OptIn(ExperimentalFoundationApi::class)
@Preview
@Composable
private fun SkTextFieldPreview() {
SkTextField(value = "Sk Testing")
SkTextField(state = TextFieldState("Sk Testing"))
}

0 comments on commit 3c33d8c

Please sign in to comment.