Skip to content

Commit dd92193

Browse files
committed
[design] #62 Base UploadScreen
1 parent 361db80 commit dd92193

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,31 @@
11
package com.record.upload
22

3+
import androidx.compose.foundation.ExperimentalFoundationApi
34
import androidx.compose.foundation.layout.Box
45
import androidx.compose.foundation.layout.PaddingValues
56
import androidx.compose.foundation.layout.fillMaxSize
67
import androidx.compose.material3.Text
78
import androidx.compose.runtime.Composable
89
import androidx.compose.ui.Modifier
10+
import androidx.compose.ui.platform.LocalContext
911

1012
@Composable
1113
fun UploadRoute(
1214
padding: PaddingValues,
1315
modifier: Modifier = Modifier,
1416
) {
15-
Box(modifier = modifier.fillMaxSize()) {
17+
val context = LocalContext.current
18+
VideoPickerScreen(padding = padding)
19+
}
20+
21+
@Composable
22+
fun VideoPickerScreen(
23+
padding:PaddingValues,
24+
/*
25+
//ToDo uiState,Onclick
26+
* */
27+
){
28+
Box(modifier = Modifier.fillMaxSize()) {
1629
Text("upload")
1730
}
1831
}

0 commit comments

Comments
 (0)