A small sample of using it ```Column( Weighte...
# android
j
A small sample of using it
Copy code
Column(
					Weighted(
						Column(
							Gravity(Center),
							ImageWizard(
								ImageProperty(R.drawable.anonymous),
								TextProperty(R.string.anonymous),
								TextProperty(R.string.anonymous),
								anonymousVisibility
							),
							ImageWizard(
								anonymousImage,
								TextProperty(R.string.anonymous),
								TextProperty(R.string.anonymous)
							)
						)
					),
					Button(
						Primary,
						TextProperty(R.string.anonymous),
						Clicks { anonymousClicks.onNext(Unit) },
						Margins(top = Material, bottom = MaterialSmall, left = Material, right = Material)
					),
					Button(
						Secondary,
						TextProperty(R.string.anonymous),
						Clicks { anonymousClicks.onNext(Unit) },
						Margins(bottom = Material, left = Material, right = Material)
					)
				)
r
t
There are dozens of them all around github