Created
December 7, 2022 19:03
-
-
Save molidev8/b22a471a1c8e4246a4cb46166669c2dd to your computer and use it in GitHub Desktop.
CustomSwitchFactory
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
object CustomSwitchFactory { | |
fun build(type: CustomSwitchType): CustomSwitchManager = when (type) { | |
CustomSwitchType.CustomThumbBigSwitch -> CustomSwitchThumbBig() | |
CustomSwitchType.CustomThumbSmallSwitch -> CustomSwitchThumbSmall() | |
CustomSwitchType.CustomTrackPillSwitch -> CustomSwitchThumbPill() | |
CustomSwitchType.Vanilla -> CustomSwitchVanilla() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment