From 94a5e47a29c3b16b029a3079a0d53eb014f4cd81 Mon Sep 17 00:00:00 2001 From: Paul Fitzgerald Date: Wed, 14 Dec 2022 11:48:53 +0000 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 51f78c5..c239787 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ struct ContentView: View { @State private var items: [Item] var body: some View { - ScrollView(.horiaontal) { + ScrollView(.horizontal) { LazyHStack { ForEach(items, id: \.self) { item in ItemView(item) From a6978077674022e0cc541db2429c4f14cfb81fec Mon Sep 17 00:00:00 2001 From: Paul Fitzgerald Date: Wed, 14 Dec 2022 11:53:38 +0000 Subject: [PATCH 2/2] display import --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index c239787..978b040 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,8 @@ pod 'Snappable', '~> 0.3.0' ### Basic ```swift +import Snappable + struct ContentView: View { @State private var items: [Item]