File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
app/src/main/java/com/raival/compose/file/explorer/screen/main Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ import com.raival.compose.file.explorer.screen.main.ui.StorageDeviceView
5656
5757@OptIn(ExperimentalFoundationApi ::class )
5858@Composable
59- fun ColumnScope.MainTabContentView (tab : HomeTab ) {
59+ fun ColumnScope.HomeTabContentView (tab : HomeTab ) {
6060 Column (modifier = Modifier
6161 .fillMaxSize()
6262 .verticalScroll(rememberScrollState())) {
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import com.raival.compose.file.explorer.screen.main.tab.apps.ui.AppsTabContentVi
1010import com.raival.compose.file.explorer.screen.main.tab.files.FilesTab
1111import com.raival.compose.file.explorer.screen.main.tab.files.ui.FilesTabContentView
1212import com.raival.compose.file.explorer.screen.main.tab.home.HomeTab
13- import com.raival.compose.file.explorer.screen.main.tab.home.ui.MainTabContentView
13+ import com.raival.compose.file.explorer.screen.main.tab.home.ui.HomeTabContentView
1414
1515@Composable
1616fun ColumnScope.TabContentView (tabIndex : Int ) {
@@ -23,7 +23,7 @@ fun ColumnScope.TabContentView(tabIndex: Int) {
2323 if (currentTab is FilesTab ) {
2424 FilesTabContentView (currentTab)
2525 } else if (currentTab is HomeTab ) {
26- MainTabContentView (currentTab)
26+ HomeTabContentView (currentTab)
2727 } else if (currentTab is AppsTab ) {
2828 AppsTabContentView (currentTab)
2929 }
You can’t perform that action at this time.
0 commit comments