Created
June 7, 2022 10:47
-
-
Save Vzhukov74/541d573a8ee2016426ec16005e6112b3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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