Skip to content

Instantly share code, notes, and snippets.

@hasanalisiseci
Created January 11, 2024 21:05
Show Gist options
  • Save hasanalisiseci/b5099618d095f5c04bbf2619a942999a to your computer and use it in GitHub Desktop.
Save hasanalisiseci/b5099618d095f5c04bbf2619a942999a to your computer and use it in GitHub Desktop.
struct WeatherView: View {
@State var weatherVM = WeatherViewModel()
var body: some body {
SubWeatherView(vm: weatherVM)
}
}
struct SubWeatherView:View {
@Bindable var vm: WeatherViewModel
var body: some body {
TextField("City", text: $vm.city)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment