Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
monoqlo committed Oct 20, 2018
1 parent 80593c8 commit 520ec23
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -121,14 +121,14 @@ menuButton.didDismissMenuItems = { (menu) -> Void in
}

// Expanding Animation
menuButton.enabledExpandingAnimations = [] // No animation
menuButton.expandingAnimations = [] // No animation

menuButton.enabledExpandingAnimations = CustomAnimationOptions.All.exclusiveOr(.MenuItemRotation)
menuButton.expandingAnimations = CustomAnimationOptions.all.symmetricDifference(.menuButtonRotate)

// Folding Animation
menuButton.enabledFoldingAnimations = .All
menuButton.foldingAnimations = .all

menuButton.enabledFoldingAnimations = [.MenuItemMoving, .MenuItemFade, .MenuButtonRotation]
menuButton.foldingAnimations = [.MenuItemMoving, .MenuItemFade, .MenuButtonRotation]
```


Expand Down

0 comments on commit 520ec23

Please sign in to comment.