Skip to content

Instantly share code, notes, and snippets.

@lookashc
Last active December 21, 2020 10:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lookashc/afe501b8686d7563f9b3e583f0273709 to your computer and use it in GitHub Desktop.
Save lookashc/afe501b8686d7563f9b3e583f0273709 to your computer and use it in GitHub Desktop.
medium-feature-toggles-gist3
object ShowAveragesCardFeature : Feature<Boolean> {
override val initialValue = false
override val name = "Show Averages Card"
}
class ShowAveragesCardFeatureToggle(context: Context) :
PersistentFeatureToggle(context, ShowAveragesCardFeature)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment