All Projects → nekronos → FuseNativeControls

nekronos / FuseNativeControls

Licence: other
No description or website provided.

Programming Languages

Uno
12 projects

Projects that are alternatives of or similar to FuseNativeControls

krz personalmenu
🎓 ESX PersonalMenu by Korioz
Stars: ✭ 58 (+205.26%)
Mutual labels:  nativeui
D500px
500px gallery demo built with Fusetools
Stars: ✭ 42 (+121.05%)
Mutual labels:  fusetools
RAGENativeUI
No description or website provided.
Stars: ✭ 95 (+400%)
Mutual labels:  nativeui

FuseNativeControls

Build Status

This library provides cross-platform abstractions of native Android and iOS controls for fuse.

Implemented so far:

  • DatePicker
  • TimePicker

Example:

<NativeViewHost>
	<Native.DatePicker ux:Name="datePicker">
		<JavaScript>
			var date = { year: 2018, month: 1, day: 13 };
			var minDate = { year: 2016, month: 1, day: 1 };
			var maxDate = { year: 2020, month: 1, day: 31 };

			datePicker.setDate(date);
			datePicker.setMaxDate(maxDate);
			datePicker.setMinDate(minDate);
			
			datePicker.CurrentDate.addSubscriber(function () {
				var d = datePicker.CurrentDate.value;
				console.log("Date changed: " + d["year"] + "-" + d["month"] + "-" + d["day"]);
			});

		</JavaScript>
	</Native.DatePicker>
</NativeViewHost>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].