https://kotlinlang.org logo
#android
Title
# android
j

Jacob Applin

05/08/2019, 8:27 PM
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

rook

05/08/2019, 9:25 PM
t

themishkun

05/08/2019, 11:03 PM
There are dozens of them all around github
3 Views