wip: fake chat bubbles animation

This commit is contained in:
Ryan Zhao 2023-08-24 11:49:05 +10:00
parent c7c5969e6f
commit 71433155e5
2 changed files with 24 additions and 1 deletions

View File

@ -9,6 +9,8 @@ import SessionUtilitiesKit
struct LandingView: View {
@EnvironmentObject var host: HostWrapper
@State var numberOfBubblesShown: Int = 0
var body: some View {
NavigationView {
ZStack(alignment: .center) {
@ -30,7 +32,17 @@ struct LandingView: View {
.foregroundColor(themeColor: .textPrimary)
.padding(.vertical, Values.mediumSpacing)
FakeChat()
FakeChat($numberOfBubblesShown)
.onAppear {
Timer.scheduledTimerOnMainThread(withTimeInterval: 1.5, repeats: true) { timer in
withAnimation(.spring().speed(0.68)) {
numberOfBubblesShown += 1
if numberOfBubblesShown >= 4 {
timer.invalidate()
}
}
}
}
Spacer()
}
@ -170,6 +182,8 @@ struct ChatBubble: View {
}
struct FakeChat: View {
@Binding var numberOfBubblesShown: Int
let chatBubbles: [ChatBubble] = [
ChatBubble(text: "onboarding_chat_bubble_1".localized(), outgoing: false),
ChatBubble(text: "onboarding_chat_bubble_2".localized(), outgoing: true),
@ -177,6 +191,10 @@ struct FakeChat: View {
ChatBubble(text: "onboarding_chat_bubble_4".localized(), outgoing: true),
]
init(_ numberOfBubblesShown: Binding<Int>) {
self._numberOfBubblesShown = numberOfBubblesShown
}
var body: some View {
VStack(
alignment: .leading,
@ -192,6 +210,7 @@ struct FakeChat: View {
maxWidth: .infinity,
alignment: chatBubble.outgoing ? .trailing : .leading
)
.opacity(index < numberOfBubblesShown ? 1.0 : 0.0)
}
}
.padding(.horizontal, 36)

View File

@ -41,6 +41,10 @@ struct LoadAccountView: View {
}
}
func continueWithQRCode() {
}
func continueWithMnemonic() {
let mnemonic = recoveryPassword.lowercased()
let hexEncodedSeed: String