Schema
annotation class Schema(val members: Array<KClass<*>>, val dependencies: Array<Schema.Dependency> = [])
Annotates an otherwise unused type with a set of Widget-annotated or Modifier-annotated classes which are all part of this schema.
@Schema([
Row::class,
RowAlignment::class,
Button::class,
Text::class,
])
interface NameContent copied to clipboard