LoginSignup
4
2

More than 3 years have passed since last update.

SwiftUI 破線のボタンの作り方

Posted at

破線のボタンの作り方

備忘録です。

hasen_sample_1.png

StrokeStyleのdashの数値で破線の長さを変更できます。

var body: some View {
        VStack(alignment: .center) {
            Button(action: {}) {
                HStack(spacing: 4) {
                    Image(systemName: "plus.circle")
                    Text("HogeHoge")
                }
                .foregroundColor(.blue)
                .padding(12)
                .overlay(
                    RoundedRectangle(cornerRadius: 8)
                        .strokeBorder(
                            style: StrokeStyle(
                                lineWidth: 2,
                                dash: [4]
                            )
                    )
                        .foregroundColor(.blue)
                )
            }

        }
    }
4
2
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
4
2