mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-13 04:51:21 +00:00
Fixes for composer and DM
This commit is contained in:
parent
bf49a4558c
commit
ed9b2a37a7
2 changed files with 16 additions and 17 deletions
|
@ -30,24 +30,23 @@ public struct ConversationDetailView: View {
|
|||
|
||||
public var body: some View {
|
||||
ScrollViewReader { proxy in
|
||||
ZStack(alignment: .bottom) {
|
||||
ScrollView {
|
||||
LazyVStack {
|
||||
if viewModel.isLoadingMessages {
|
||||
loadingView
|
||||
}
|
||||
ForEach(viewModel.messages) { message in
|
||||
ConversationMessageView(message: message,
|
||||
conversation: viewModel.conversation)
|
||||
.padding(.vertical, 4)
|
||||
.id(message.id)
|
||||
}
|
||||
bottomAnchorView
|
||||
ScrollView {
|
||||
LazyVStack {
|
||||
if viewModel.isLoadingMessages {
|
||||
loadingView
|
||||
}
|
||||
.padding(.horizontal, .layoutPadding)
|
||||
.padding(.bottom, 30)
|
||||
ForEach(viewModel.messages) { message in
|
||||
ConversationMessageView(message: message,
|
||||
conversation: viewModel.conversation)
|
||||
.padding(.vertical, 4)
|
||||
.id(message.id)
|
||||
}
|
||||
bottomAnchorView
|
||||
}
|
||||
.scrollDismissesKeyboard(.interactively)
|
||||
.padding(.horizontal, .layoutPadding)
|
||||
}
|
||||
.scrollDismissesKeyboard(.interactively)
|
||||
.safeAreaInset(edge: .bottom) {
|
||||
inputTextView
|
||||
}
|
||||
.onAppear {
|
||||
|
|
|
@ -202,7 +202,7 @@ public struct StatusEditorView: View {
|
|||
dismiss()
|
||||
NotificationCenter.default.post(name: NotificationsName.shareSheetClose,
|
||||
object: nil)
|
||||
if !viewModel.mode.isInShareExtension && !preferences.requestedReview {
|
||||
if !viewModel.mode.isInShareExtension, !preferences.requestedReview, !ProcessInfo.processInfo.isiOSAppOnMac {
|
||||
if let scene = UIApplication.shared.connectedScenes.first(where: { $0.activationState == .foregroundActive }) as? UIWindowScene {
|
||||
SKStoreReviewController.requestReview(in: scene)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue