Skip to content

Commit d988757

Browse files
Add missing changes from the last commit
1 parent 07262ec commit d988757

32 files changed

+121
-2019
lines changed

.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ESTabBarControllerExample/ESTabBarControllerExample.xcodeproj/project.pbxproj

+76-231
Large diffs are not rendered by default.

ESTabBarControllerExample/ESTabBarControllerExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"pins" : [
3+
{
4+
"identity" : "estabbarcontroller",
5+
"kind" : "remoteSourceControl",
6+
"location" : "https://github.com/eggswift/ESTabBarController.git",
7+
"state" : {
8+
"revision" : "93a30b833a05fd916c6d4c5d6e94a270cf3b6636",
9+
"version" : "2.9.0"
10+
}
11+
},
12+
{
13+
"identity" : "lottie-ios",
14+
"kind" : "remoteSourceControl",
15+
"location" : "https://github.com/airbnb/lottie-ios.git",
16+
"state" : {
17+
"revision" : "d6feea26a370019b4d3a85f5984cb95a2734776f",
18+
"version" : "4.2.0"
19+
}
20+
},
21+
{
22+
"identity" : "pop",
23+
"kind" : "remoteSourceControl",
24+
"location" : "https://github.com/navartis/pop.git",
25+
"state" : {
26+
"branch" : "1.0.11-vs-spm",
27+
"revision" : "48da630fcac333cb831090e5b17998e84cf9d0b7"
28+
}
29+
}
30+
],
31+
"version" : 2
32+
}

ESTabBarControllerExample/ESTabBarControllerExample/Content/Lottie/ExampleLottieAnimateContentView.swift

+5-5
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ class ExampleLottieAnimateBasicContentView: ESTabBarItemContentView {
2929

3030
class ExampleLottieAnimateContentView: ExampleLottieAnimateBasicContentView {
3131

32-
let lottieView: LAAnimationView! = {
33-
let lottieView = LAAnimationView.animationNamed("IconTransitions")
34-
lottieView?.loopAnimation = true
35-
lottieView?.contentMode = .scaleAspectFit
36-
lottieView?.play()
32+
let lottieView: LottieAnimationView! = {
33+
let lottieView = LottieAnimationView(name: "IconTransitions")
34+
lottieView.loopMode = .loop
35+
lottieView.contentMode = .scaleAspectFit
36+
lottieView.play()
3737
return lottieView
3838
}()
3939

ESTabBarControllerExample/ESTabBarControllerExample/Content/Lottie/Lottie.framework/Headers/LAAnimationTransitionController.h

-42
This file was deleted.

ESTabBarControllerExample/ESTabBarControllerExample/Content/Lottie/Lottie.framework/Headers/LAAnimationView.h

-33
This file was deleted.

ESTabBarControllerExample/ESTabBarControllerExample/Content/Lottie/Lottie.framework/Headers/Lottie.h

-15
This file was deleted.

ESTabBarControllerExample/ESTabBarControllerExample/Content/Lottie/Lottie.framework/Modules/module.modulemap

-6
This file was deleted.

ESTabBarControllerExample/ESTabBarControllerExample/Framework/pop.framework/Headers/POP.h

-29
This file was deleted.

0 commit comments

Comments
 (0)