backup
This commit is contained in:
@@ -54,7 +54,7 @@ struct ContentView: View {
|
||||
case .addressPicker:
|
||||
AddressPickerModalView(appState: $appState, selectedTab: $selectedTab)
|
||||
case .filters:
|
||||
FiltersModalView()
|
||||
FiltersModalView(appState: $appState)
|
||||
}
|
||||
}
|
||||
.onChange(of: appState.address.display) { _, _ in
|
||||
@@ -346,21 +346,3 @@ struct AddressPickerModalView: View {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
struct FiltersModalView: View {
|
||||
var body: some View {
|
||||
NavigationStack {
|
||||
VStack(spacing: 12) {
|
||||
Text("Filtros")
|
||||
.font(AppTypography.heading2)
|
||||
Text("Filtros de busca serao ligados na integracao real da Home com API.")
|
||||
.font(AppTypography.body)
|
||||
.multilineTextAlignment(.center)
|
||||
.foregroundStyle(AppColors.textMuted)
|
||||
}
|
||||
.padding(24)
|
||||
.frame(maxWidth: .infinity, maxHeight: .infinity)
|
||||
.background(AppColors.backgroundLight)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user