Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tsuzukihashi committed Jul 13, 2024
1 parent 86e911a commit b6cb3f8
Showing 1 changed file with 20 additions and 6 deletions.
26 changes: 20 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,33 @@
# TsuzuKit
オレオレSwiftライブラリ

<img src="https://1.bp.blogspot.com/-PYOsJAMddQI/WdyDTQ-OjQI/AAAAAAABHbU/wg8mS8AFANYaZOKreTrdJhPPUochYCkDQCLcBGAs/s800/character_program_shutdown.png" width=320>
オレオレ Swift ライブラリ

<img src="./Sources/TsuzuKit/Resources/Image/icon.jpeg" width=320>

### 部分角丸

### 部分角丸
- PartlyRoundedCornerView

Useage
```.swift
Useage

```swift
.cornerRadius(20, maskedCorners: [.layerMinXMinYCorner, .layerMaxXMinYCorner])
```

### HapticFeedback

```.swift
```swift
HapticFeedback.notice(type: .success)
HapticFeedback.impact(style: .medium)
HapticFeedback.selection()
```

### Safe Access Collection

```swift
import TsuzuKit

...
let collection: [String] = ["1", "2"]
print(collection[safe: 0]) // Optional("1")
```

0 comments on commit b6cb3f8

Please sign in to comment.