mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
41 lines
1.4 KiB
Kotlin
41 lines
1.4 KiB
Kotlin
package com.geeksville.mesh.ui
|
|
|
|
import android.os.Bundle
|
|
import android.view.LayoutInflater
|
|
import android.view.View
|
|
import android.view.ViewGroup
|
|
import androidx.compose.ui.platform.ViewCompositionStrategy
|
|
import androidx.fragment.app.activityViewModels
|
|
import com.geeksville.mesh.android.Logging
|
|
import com.geeksville.mesh.databinding.ComposeViewBinding
|
|
import com.geeksville.mesh.model.UIViewModel
|
|
import com.google.android.material.composethemeadapter.MdcTheme
|
|
import dagger.hilt.android.AndroidEntryPoint
|
|
|
|
@AndroidEntryPoint
|
|
class DeviceSettingsFragment : ScreenFragment("Device Settings"), Logging {
|
|
|
|
private var _binding: ComposeViewBinding? = null
|
|
private val binding get() = _binding!!
|
|
private val model: UIViewModel by activityViewModels()
|
|
|
|
override fun onCreateView(
|
|
inflater: LayoutInflater, container: ViewGroup?,
|
|
savedInstanceState: Bundle?
|
|
): View {
|
|
_binding = ComposeViewBinding.inflate(inflater, container, false)
|
|
.apply {
|
|
composeView.apply {
|
|
setViewCompositionStrategy(
|
|
ViewCompositionStrategy.DisposeOnViewTreeLifecycleDestroyed
|
|
)
|
|
setContent {
|
|
MdcTheme {
|
|
DeviceSettingsItemList(model)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return binding.root
|
|
}
|
|
}
|