9
4

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 1 year has passed since last update.

【SwiftUI】DisclosureGroupを使ってみた

Last updated at Posted at 2022-10-24

はじめに

iOS14で追加されたDisclosureGroupを初めて触ってみたので記録しておきます。

どんな動きをするものなの?

Simulator Screen Recording - iPhone 14 Pro - 2022-10-24 at 19.09.35.gif

実装

DisclosureGroupでネストしていく感じですね。
とてもわかりやすいです。

import SwiftUI

struct ContentView: View {
    @State var sliderValue: CGFloat = 50.0
    var body: some View {
        List {
            DisclosureGroup("メニュー") {
                DisclosureGroup("朝ごはん") {
                    Text("納豆ごはん")
                    Text("味噌汁")
                    Text("焼き魚")
                }
                DisclosureGroup("昼ごはん") {
                    Text("ラーメン")
                }
                DisclosureGroup("夜ごはん") {
                    Text("白米")
                    Text("チキンソテー")
                    Text("トマトスープ")
                    Text("キャベツのサラダ")
                }
            }
        }
    }
}

コードで開閉する

isExpandedを使用することでコードで開閉ができる

DisclosureGroup("メニュー", isExpanded: $isShow) {
    Text("")
}

おわり

いままで1回も使ったことがなかったので今回触れることができてよかったです。

でもこれあんまり使いどころないよな。。。

9
4
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
9
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?