2025-01-01

Simple ScrollView Wrapper


extension View {
  func scrollable() -> some View {
    ScrollView {
      self
    }
  }
}

Usage:

SomeView {
  // ...
}
.scrollable()