Skip to content

Instantly share code, notes, and snippets.

@takoikatakotako
Created October 24, 2024 01:42
Show Gist options
  • Select an option

  • Save takoikatakotako/9672ec2e96d0ae3db24c338050155665 to your computer and use it in GitHub Desktop.

Select an option

Save takoikatakotako/9672ec2e96d0ae3db24c338050155665 to your computer and use it in GitHub Desktop.
SwiftUIで続きを読む。。。ボタンがあるViewを実装する
import SwiftUI
struct ContentView: View {
private let aliceInWonderland = "Alice was beginning to get very tired of sitting by her sister on the bank, and of having nothing to do: once or twice she had peeped into the book her sister was reading, but it had no pictures or conversations in it, “and what is the use of a book,” thought Alice “without pictures or conversations?”\nSo she was considering in her own mind (as well as she could, for the hot day made her feel very sleepy and stupid), whether the pleasure of making a daisy-chain would be worth the trouble of getting up and picking the daisies, when suddenly a White Rabbit with pink eyes ran close by her.\nThere was nothing so very remarkable in that; nor did Alice think it so very much out of the way to hear the Rabbit say to itself, “Oh dear! Oh dear! I shall be late!” (when she thought it over afterwards, it occurred to her that she ought to have wondered at this, but at the time it all seemed quite natural); but when the Rabbit actually took a watch out of its waistcoat-pocket, and looked at it, and then hurried on, Alice started to her feet, for it flashed across her mind that she had never before seen a rabbit with either a waistcoat-pocket, or a watch to take out of it, and burning with curiosity, she ran across the field after it, and fortunately was just in time to see it pop down a large rabbit-hole under the hedge."
private let snorlax = "Snorlax is a huge, bipedal, dark blue-green Pokémon with a cream-colored face, belly, and feet. "
private let flyMeToTheMoon = """
Fly me to the moon
Let me play among the stars
Let me see what spring is like
On a-Jupiter and Mars
In other words, hold my hand
In other words, baby, kiss me
Fill my heart with song
And let me sing for ever more
You are all I long for
All I worship and adore
In other words, please be true
In other words, I love you
Fill my heart with song
Let me sing for ever more
You are all I long for
All I worship and adore
In other words, please be true
In other words, in other words
I love … you
"""
var body: some View {
ScrollView {
VStack {
ShowMoreView(text: aliceInWonderland)
ShowMoreView(text: snorlax)
ShowMoreView(text: flyMeToTheMoon)
}
}
}
}
#Preview {
ContentView()
}
import SwiftUI
struct ShowMoreView: View {
@State var text: String
@State var isFirst = true
@State var isFold = false
@State var needFoldButton = true
@State var textHeight: CGFloat?
var body: some View {
VStack(alignment: .trailing) {
HStack {
Text(text)
.frame(height: textHeight)
.background(GeometryReader { geometory in
Color.clear.preference(key: SizePreference.self, value: geometory.size)
})
.padding()
.onPreferenceChange(SizePreference.self) { textSize in
if self.isFirst == true {
if textSize.height > 80 {
textHeight = 80
isFold = true
isFirst = false
} else {
needFoldButton = false
}
}
}
Spacer()
}
if needFoldButton {
Button(action: {
self.isFold.toggle()
if isFold == true {
textHeight = 80
} else {
textHeight = nil
}
}) {
Text(isFold ? "More" : "Fold")
}.padding(.trailing, 8)
}
}
}
}
private struct SizePreference: PreferenceKey {
static let defaultValue: CGSize = .zero
static func reduce(value: inout CGSize, nextValue: () -> CGSize) {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment