LoginSignup
21
13

More than 3 years have passed since last update.

[SwiftUI]セルが下から並ぶチャットUI

Last updated at Posted at 2019-10-04
var body: some View {
        List {
            ForEach(viewModel.messages.reversed(), id: \.id, content: {
                Text($0.text)
            }).rotationEffect(.radians(.pi), anchor: .center)
        }.rotationEffect(.radians(.pi), anchor: .center)
}

List自体とForEachを180度回転させることで実現できる

Screen Shot 2019-10-05 at 3.42.07.png

要素のalignmentなども逆になってしまうので注意

21
13
2

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
21
13