You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cele toto spravanie s crashovanim appky cez exit(0) sa mi strasne nepaci, ze treba kvoli zmene servera restartovat appku. Hlavne to je trackovane potom do Crashlytics, kedze to zachyti ako crash. Na to by sme mali vymysliet nejaky handler, co refreshne tu network session, aj kvoli setupu proxy do buducna 😄
kazdopadne drobne navrhovane upravy:
func saveMemorySettingsFooter() -> some View {
VStack(spacing: 10) {
ButtonFilled(text: "Save memory settings") {
saveMemorySettings()
}
#warning("TODO: treba crashovat appku aj kvoli memory settingom?")
Text("The app will be terminated to properly change memory sanitizer settings.")
.multilineTextAlignment(.center)
.foregroundColor(AppDebugColors.textSecondary)
.font(.caption)
.frame(maxWidth: .infinity)
}
.padding(16)
.background(Glass().edgesIgnoringSafeArea(.bottom))
}
func saveMemorySettings() {
memorySettingsManager.enabled = enabled
memorySettingsManager.style = style
memorySettingsManager.visibility = visibility
exit(0)
}
kazdopadne drobne navrhovane upravy:
Originally posted by @plajdo in #36 (comment)
The text was updated successfully, but these errors were encountered: