File tree Expand file tree Collapse file tree 3 files changed +5
-11
lines changed
src/main/java/ch/benlu/composeform/components Expand file tree Collapse file tree 3 files changed +5
-11
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ dependencyResolutionManagement {
2323
24242 . Add the dependency in your build.gradle file.
2525``` kotlin
26- implementation ' com.github.benjamin-luescher:compose-form:0.2.6 '
26+ implementation ' com.github.benjamin-luescher:compose-form:0.2.8 '
2727```
2828
2929## Easy example
Original file line number Diff line number Diff line change @@ -62,15 +62,15 @@ dependencies {
6262
6363 // Reflection
6464 implementation(" org.jetbrains.kotlin:kotlin-reflect:$kotlin_version " )
65- debugImplementation ' androidx.compose.ui:ui-tooling:1.5.4 '
65+ debugImplementation " androidx.compose.ui:ui-tooling:$c ompose_version "
6666}
6767
6868publishing {
6969 publications {
7070 release(MavenPublication ) {
7171 groupId = ' com.github.benjamin-luescher'
7272 artifactId = ' compose-form'
73- version = ' 0.2.6 '
73+ version = ' 0.2.8 '
7474
7575 afterEvaluate {
7676 from components. release
Original file line number Diff line number Diff line change @@ -6,16 +6,10 @@ import androidx.compose.foundation.layout.fillMaxWidth
66import androidx.compose.foundation.layout.padding
77import androidx.compose.foundation.text.KeyboardActions
88import androidx.compose.foundation.text.KeyboardOptions
9- import androidx.compose.material.Icon
10- import androidx.compose.material.MaterialTheme
11- import androidx.compose.material.OutlinedTextField
12- import androidx.compose.material.Surface
13- import androidx.compose.material.Text
14- import androidx.compose.material.TextFieldDefaults
9+ import androidx.compose.material.*
1510import androidx.compose.material.icons.Icons
1611import androidx.compose.material.icons.filled.KeyboardArrowDown
17- import androidx.compose.runtime.Composable
18- import androidx.compose.runtime.remember
12+ import androidx.compose.runtime.*
1913import androidx.compose.ui.Modifier
2014import androidx.compose.ui.focus.FocusRequester
2115import androidx.compose.ui.focus.FocusState
You can’t perform that action at this time.
0 commit comments