Subscribe to library updates

hatzisn

Well-Known Member
Licensed User
Longtime User

Informatix

Expert
Licensed User
Longtime User
Observable v1.0

Observables are primitive types (boolean, byte, double, float, integer, long), strings, objects or collections (map, list) that trigger events when they are modified. They can also automatically update the views with which they are bound.

Example 1: You have associated an ObservableString with all the OK buttons of your application. By changing the value of this Observable (ofConfirmButton.Value = "OK"), you change at the same time the label of all OK buttons, regardless of the activity in which they are declared.

Example 2: In your application, you want to perform a task each time a list is modified by your code, regardless of the activity or sub in which that list is modified. By using an ObservableList, it becomes easy to perform the task according to the triggered event (Added, Cleared, Removed, Sorted, Updated).

Example 3: You have linked an ObservableField to a field in a database table. By changing the ID of this Observable, you get the value of the field corresponding to this ID and you trigger an Updated event. By changing the Observable value, you update the field in the database and trigger an Updated event.
 

udg

Expert
Licensed User
Longtime User
[B4X] [XUI] xRegexField rel.015

Input box using Regex to validate input and Border to signal the user about invalid data.
 
Last edited:

corwin42

Expert
Licensed User
Longtime User
Update ViewPager library to version 1.10.

Fixes a crash while adding items manually to a page.
 

Star-Dust

Expert
Licensed User
Longtime User
[B4X] [XUI] SD XUIView 0.01

I have published an XUI library that contains some native and other custom views. Further Views will be added.
B4XButton
B4XCalendarPicker
B4XCheckbox
B4XEditText
B4XImageView
B4XLabel
B4XPanel (not recommended to use)
B4XProgressBar
B4XSeekBar
B4XRadioButton
B4XTrimmer
ezgif-5-a8186a464e.gif
 
Last edited:
Top