chore: update Compose to 1.4.3

This commit is contained in:
andrekir 2023-03-12 12:41:05 -03:00
parent 8fef36a3f2
commit f66a3fabc7
4 changed files with 8 additions and 8 deletions

View file

@ -11,7 +11,7 @@ import androidx.fragment.app.activityViewModels
import com.geeksville.mesh.R
import com.geeksville.mesh.android.Logging
import com.geeksville.mesh.model.UIViewModel
import com.google.accompanist.themeadapter.material.MdcTheme
import com.google.accompanist.themeadapter.appcompat.AppCompatTheme
import dagger.hilt.android.AndroidEntryPoint
@AndroidEntryPoint
@ -28,7 +28,7 @@ class DeviceSettingsFragment : ScreenFragment("Device Settings"), Logging {
setViewCompositionStrategy(ViewCompositionStrategy.DisposeOnViewTreeLifecycleDestroyed)
setBackgroundColor(ContextCompat.getColor(context, R.color.colorAdvancedBackground))
setContent {
MdcTheme {
AppCompatTheme {
DeviceSettingsItemList(model)
}
}

View file

@ -11,7 +11,7 @@ import androidx.fragment.app.activityViewModels
import com.geeksville.mesh.R
import com.geeksville.mesh.android.Logging
import com.geeksville.mesh.model.UIViewModel
import com.google.accompanist.themeadapter.material.MdcTheme
import com.google.accompanist.themeadapter.appcompat.AppCompatTheme
import dagger.hilt.android.AndroidEntryPoint
@AndroidEntryPoint
@ -28,7 +28,7 @@ class ModuleSettingsFragment : ScreenFragment("Module Settings"), Logging {
setViewCompositionStrategy(ViewCompositionStrategy.DisposeOnViewTreeLifecycleDestroyed)
setBackgroundColor(ContextCompat.getColor(context, R.color.colorAdvancedBackground))
setContent {
MdcTheme {
AppCompatTheme {
ModuleSettingsItemList(model)
}
}