Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
wuxingchen committed Mar 18, 2024
1 parent a5a88b5 commit 170b4a1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion PopupUI.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Pod::Spec.new do |s|

s.name = "PopupUI"

s.version = "1.0.3"
s.version = "1.0.4"

s.summary = "Easy to pop up any view by SwiftUI! SwiftUI 实现的弹窗控件,简单易用!"

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,14 +147,14 @@ Define all styles in App as several templates to simplify the popup code:

```swift
extension PopupConfiguration { //PopupStyle
static let center: PopupConfiguration {
static var center: PopupConfiguration {
PopupConfiguration()
.from(.center)
.to(.center, .easeOut)
...
}

static let bottom: PopupConfiguration {
static var bottom: PopupConfiguration {
PopupConfiguration()
.from(.bottom)
.isOpaque(false)
Expand Down
4 changes: 2 additions & 2 deletions README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,14 +146,14 @@ PopupConfiguration

```swift
extension PopupConfiguration { //PopupStyle
static let center: PopupConfiguration {
static var center: PopupConfiguration {
PopupConfiguration()
.from(.center)
.to(.center, .easeOut)
...
}

static let bottom: PopupConfiguration {
static var bottom: PopupConfiguration {
PopupConfiguration()
.from(.bottom)
.isOpaque(false)
Expand Down
4 changes: 2 additions & 2 deletions README_JP.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,14 +146,14 @@ App 中のすべてのスタイルをいくつかのテンプレートとして

```swift
extension PopupConfiguration { //PopupStyle
static let center: PopupConfiguration {
static var center: PopupConfiguration {
PopupConfiguration()
.from(.center)
.to(.center, .easeOut)
...
}

static let bottom: PopupConfiguration {
static var bottom: PopupConfiguration {
PopupConfiguration()
.from(.bottom)
.isOpaque(false)
Expand Down

0 comments on commit 170b4a1

Please sign in to comment.