feat(node): consolidate node chip and menu (#1941)

This commit is contained in:
James Rich 2025-05-26 19:36:32 -05:00 committed by GitHub
parent 62e2368887
commit 6332b3bd42
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 734 additions and 374 deletions

View file

@ -142,7 +142,6 @@ class MainActivity : AppCompatActivity(), Logging {
AppCompatDelegate.MODE_NIGHT_FOLLOW_SYSTEM -> isSystemInDarkTheme()
else -> isSystemInDarkTheme()
}
AppTheme(
dynamicColor = dynamic,
darkTheme = dark,
@ -447,14 +446,6 @@ class MainActivity : AppCompatActivity(), Logging {
}
}
model.tracerouteResponse.observe(this) { response ->
model.showAlert(
title = getString(R.string.traceroute),
message = response ?: return@observe,
)
model.clearTracerouteResponse()
}
try {
bindMeshService()
} catch (ex: BindFailedException) {