mirror of
https://github.com/bitwarden/android.git
synced 2024-11-21 17:05:44 +03:00
use Bitwarden theme in MainActivity (#13)
This commit is contained in:
parent
122ff7f145
commit
b337fbfd20
1 changed files with 6 additions and 1 deletions
|
@ -4,6 +4,7 @@ import android.os.Bundle
|
|||
import androidx.activity.ComponentActivity
|
||||
import androidx.activity.compose.setContent
|
||||
import com.x8bit.bitwarden.ui.feature.rootnav.RootNavScreen
|
||||
import com.x8bit.bitwarden.ui.theme.BitwardenTheme
|
||||
import dagger.hilt.android.AndroidEntryPoint
|
||||
|
||||
/**
|
||||
|
@ -13,6 +14,10 @@ import dagger.hilt.android.AndroidEntryPoint
|
|||
class MainActivity : ComponentActivity() {
|
||||
override fun onCreate(savedInstanceState: Bundle?) {
|
||||
super.onCreate(savedInstanceState)
|
||||
setContent { RootNavScreen() }
|
||||
setContent {
|
||||
BitwardenTheme {
|
||||
RootNavScreen()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue