File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
presenter/src/main/java/com/foke/together/presenter/screen Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ import com.foke.together.presenter.theme.FourCutTogetherTheme
2727import androidx.hilt.navigation.compose.hiltViewModel
2828import com.foke.together.domain.interactor.entity.CameraSourceType
2929import com.foke.together.presenter.viewmodel.SettingViewModel
30+ import com.foke.together.util.AppPolicy
3031import kotlinx.coroutines.flow.map
3132
3233private const val CameraSourceTypeError = - 1
@@ -195,6 +196,19 @@ fun SettingScreen(
195196 ) {
196197 Text (text = " Log In" )
197198 }
199+
200+ HorizontalDivider (
201+ modifier = Modifier .padding(vertical = 16 .dp).width(300 .dp),
202+ color = MaterialTheme .colorScheme.onSurface.copy(alpha = 0.5f ),
203+ thickness = 1 .dp
204+ )
205+
206+ TextField (
207+ modifier = Modifier .width(300 .dp),
208+ value = AppPolicy .CAPTURE_INTERVAL .toString(),
209+ onValueChange = { },
210+ label = { Text (text = " Capture Interval" ) }
211+ )
198212 }
199213 }
200214 }
You can’t perform that action at this time.
0 commit comments