From 40c9060a88c0b5a3613c89ef8cec6f0374563df3 Mon Sep 17 00:00:00 2001 From: Ryo Tsuzukihashi Date: Tue, 3 Sep 2024 12:58:32 +0900 Subject: [PATCH] Update README.md --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index b27ee87..61f1de5 100644 --- a/README.md +++ b/README.md @@ -31,3 +31,11 @@ Useage let collection: [String] = ["1", "2"] print(collection[safe: 0]) // Optional("1") ``` + +### QRCodeGenerator + +```swift + import TsuzuKit + + Image(uiImage: QRCodeGenerator.generate(with: "https://tsuzukihashi.github.io/")) +```