Skip to content

Commit

Permalink
[SHARED] Add base for licenses
Browse files Browse the repository at this point in the history
  • Loading branch information
kamgurgul committed Jan 19, 2025
1 parent e30d5b0 commit f6e4f0a
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package com.kgurgul.cpuinfo.features.settings.licenses

import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import org.koin.compose.viewmodel.koinViewModel

@Composable
fun LicensesScreen(viewModel: LicensesViewModel = koinViewModel()) {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package com.kgurgul.cpuinfo.features.settings.licenses

import androidx.lifecycle.ViewModel

class LicensesViewModel : ViewModel() {

data class UiState(
val isLoading: Boolean = false,
)
}

0 comments on commit f6e4f0a

Please sign in to comment.