Compare commits

...

4 Commits

Author SHA1 Message Date
sergey.vlasenko 405ff7459f feature MB-43103 add setters in Switcher 2024-03-27 15:19:27 +03:00
sergey.vlasenko 87b7863b46 refactor 2023-11-02 16:24:13 +03:00
sergey.vlasenko 09ce885353 fix when expressions 2023-11-02 10:34:30 +03:00
kostikum e3da08a47b Merge pull request #283 from TouchInstinct/fix/dependecies
fix unnecessary dependencies in :navigation-view-controller module
2023-02-21 14:34:14 +07:00
2 changed files with 9 additions and 0 deletions
@@ -55,6 +55,7 @@ class LoadingContentView @JvmOverloads constructor(
showChild(R.id.error_with_repeat)
}
}
else -> Unit
}
}
}
@@ -28,6 +28,14 @@ public class Switcher extends FrameLayout {
@Nullable
private Animation outAnimation;
public void setOutAnimation(@Nullable Animation outAnimation) {
this.outAnimation = outAnimation;
}
public void setInAnimation(@Nullable Animation inAnimation) {
this.inAnimation = inAnimation;
}
public Switcher(@NonNull final Context context) {
this(context, null);
}