0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【SwiftUI】ScrollViewのScrollsToTopを無効にする方法

Posted at

ScrollsToTopとは

ScrollViewが表示されている状態でStatusBar(一番上の時刻やバッテリー残量が表示されている部分)をタップすると自動で一番上までスクロールしてくれる機能。

デフォルトではオンになっている。

無効にする方法

UIScrollView.appearance().scrollsToTop = falseを記述する。

例:

ScrollView {
  ...
}.onAppear {
  UIScrollView.appearance().scrollsToTop = false
}
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?