Skip to content

Instantly share code, notes, and snippets.

@Vzhukov74
Created June 7, 2022 10:47
Show Gist options
  • Save Vzhukov74/541d573a8ee2016426ec16005e6112b3 to your computer and use it in GitHub Desktop.
Save Vzhukov74/541d573a8ee2016426ec16005e6112b3 to your computer and use it in GitHub Desktop.
private func shimmers(width: CGFloat) -> some View {
VStack {
BoardShimmerView()
.padding(.horizontal, 26)
Spacer(minLength: 0)
KeyboardShimmerView(keys: viewModel.keys,
width: width - 8)
.padding(.horizontal, 4)
}.padding(.vertical, 16)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment