Hello friends

We are happy to have a great community and great friends like you.
We do our best to make B4x look more beautiful

Today we give you another cross-platform library as a gift


5- UM_SnackBar


ezgif.com-gif-maker (6).gif



Author: Ui max_co
Version: 1.20

compatible with: B4A,B4i,B4J

Click to see more information

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

4- UM_BtnLoading

Android, ios, desktop
ezgif.com-gif-maker (4).gif
....................
iosgif.gif
....................
b4g.gif


Author: Ui max_co
Version: 1.20
compatible with: B4A,B4i,B4J
Click me to get a sample

Click to see more information

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

3- UM_TabBar 2

ezgif.com-gif-maker.gif


Author: Ui max_co
Version: 1.00
compatible with: B4A,B4i,B4J

Click to see more information

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

2- UM_SearchView

ezgif.com-gif-maker.gif
....................
ezgif.com-gif-maker (1).gif

Author: Ui max_co
Version: 2.50
compatible with: B4A,B4i,B4J


Click to see more information

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

1- UM_AddToCart

ezgif.com-gif-maker (2).gif


Author: Ui max_co

Version: 1.27
compatible with: B4A,B4i,B4J


Click to see more information


If you are satisfied with our work, please donate: simone.branch@outlook.com


Ui Max_co
 

Attachments

  • Sample AddToCart.zip
    14.8 KB · Views: 590
  • Sample SearchView.zip
    14.7 KB · Views: 622
  • UM_TabBar2.b4xlib
    2.7 KB · Views: 516
  • Sample TabBar2.zip
    14.7 KB · Views: 561
  • UM_AddToCart.b4xlib
    3.1 KB · Views: 494
  • UM_BtnLoading.b4xlib
    2.7 KB · Views: 512
  • UM_SnackBar.b4xlib
    1.4 KB · Views: 543
  • UM_searchView.b4xlib
    3.8 KB · Views: 481
Last edited:

ramezaniabbas

Active Member
Licensed User
if you add a panel to the activity and use the panel-reference instead of the activity? Does it work then?
B4X:
message.Show(panel1)
yes yes
Thank you very much my friend
'----> If you are using Activity

Dim pnl As Panel
pnl.Initialize("")
Activity.AddView(pnl,0,0,100%x,100%y)

Private message As UM_SnacBar
message.Initialize
message.Text("Be sure to enter the required values in the fields")
message.Show(pnl)
 

Sofian

Member
1- UM_ AddToCart

View attachment 110832

*Event:
AddSuccess (Count As Int)
DelSuccess (Count As Int)
*Functions:
Class_Globals as String
DesignerCreateView (Base As Object, Lbl As Label, Props As Map)
GetHintText As String
GetNativePanel As Panel
GetNumber As Int
Initialize (Callback As Object, EventName As String)
IsInitialized As Boolean
mBase As B4xView
SetBuyMAX(Buy_Max As Int)
SetHintColor(HintColor As Int)
SetHintSize(HintSize As Int)
SetHintText(HintText As String)
SetIconsSize(IconSize As Int)
SetMainColor(Color As Int)
SetNumber(Number As Int)
SetNumberColor(NumberColor As Int)
SetNumberSize(NumberSize As Int)
SetFont(MyFont As B4XFont)
Tag as Object
*End Functions



Changelog

*1.23
Release

*1.26
Fixed a rotation problem on the B4i


*1.27
Set Font
add to CustomListView to get index :
B4X:
Dim index As Int = CLV1.GetItemFromView(Sender)
Dim pnl As B4XView = CLV1.GetPanel(index)

and runtime error code :
B4X:
java.lang.ClassCastException: com.swk.slx.um_addtocart cannot be cast to android.view.View
 

ramezaniabbas

Active Member
Licensed User
add to CustomListView to get index :
B4X:
Dim index As Int = CLV1.GetItemFromView(Sender)
Dim pnl As B4XView = CLV1.GetPanel(index)

and runtime error code :
B4X:
java.lang.ClassCastException: com.swk.slx.um_addtocart cannot be cast to android.view.View
B4X:
Dim index As Int = CLV1.GetItemFromView(Sender)
Dim pnl As B4XView = CLV1.GetPanel(index).tag
 
Top