Share My Creation B4XCode Material Kit

Hello everyone :)
*Starting off by thanking @Erel for making this possible for us ♥

We have started building an amazing Material Kit Library.

Currently it contains 7 designs, but we are planning on reaching 400+ designs before the end of this year.
design1.JPG


Purchasing this library will give you :
1- Future designs updates (Life time free updates)
2- Library B4A Source Code
3- Jar + Xml Files

Library cost price : 20$

*If you have any question or you need help please contact us @ : [email protected] or @ : [email protected] and we will get back to you right away.

We will upload the design updates here

Thank you,
Saif
 
Last edited:

sfsameer

Well-Known Member
Licensed User
Longtime User
Hello everyone :)

One of the new features & designs we will release in the new update (in 2 days) we have added is Sliders
1- Fully customizable (Text size, Color, Bold, etc...)
2- Able to Add Title Text
3- Able to Add Body Text
4- Able to add Button
5- Able to add multiple sliders in one activity
6- Able to show/hide slider current page
7- Each view is animated on it's own
8- etc...

Below is a small demo :





Thank you,
Saif
 
Last edited:

sfsameer

Well-Known Member
Licensed User
Longtime User
Hello Everyone :)

A little update before the release on (07-08-2021 11:00 PM GMT 3+)

As promised, we have started developing the B4XCode Material Kit for B4J As well.

Below is a small demo of the B4J UI Kit :


*Coming soon we will release an update that will include the B4i UI Kit as well.

Thank you,
Saif
 

Xfood

Expert
Licensed User
Hi Saif, I use this fantastic kit, in my new app, to have professional graphics.
Thanks Saif
 

sfsameer

Well-Known Member
Licensed User
Longtime User
Hello Everyone :)

Please use the same download link to download the new update.
1- B4A Project has been updated which contains new designs and code samples
2- You will find a new folder under the name "B4JB4XCodeUI" which is the new B4J UI Kit.
The B4J UI Kit will be also be updated with every release.

Thank you,
Saif
 

Puthut Wibowo

Member
Licensed User
Very useful tools Seif

I try to change the Activity to be root in every initialize the result is always an empty form in every class I try.

Example:
NID.Initialize(Activity,Me,"NoInternet")
 

Attachments

  • WhatsApp Image 2021-08-30 at 4.18.24 PM.jpeg
    WhatsApp Image 2021-08-30 at 4.18.24 PM.jpeg
    38.8 KB · Views: 159

sfsameer

Well-Known Member
Licensed User
Longtime User
Very useful tools Seif

I try to change the Activity to be root in every initialize the result is always an empty form in every class I try.

Example:
NID.Initialize(Activity,Me,"NoInternet")
Hello Dear,

Could you check the logs and see if you have an error, it may show an empty panel due to failing to load the image which should exist in the assets folder.

Thank you,
saif
 

Puthut Wibowo

Member
Licensed User
B4X:
Dim UID As UserInfoDialog
UID.Initialize(Root,Me,"UID")
UID.StrProfileName= "Saif Sameer"
UID.StrProfileDescription = "Test test test test test test test test test"
UID.StrButtonText = "Follow"
UID.StrLeft_FirstValue = "35.7K"
UID.StrLeft_SecondValue = "Followers"
UID.StrRight_FirstValue = "215"
UID.StrRight_SecondValue = "Following"
UID.ImgProfilePicture = LoadBitmap(File.DirAssets, "avatar.png")
UID.Create_Popup_Dark
Code:
'    '-------Begin NoInternetDialog :
    Dim NID As NoInternetDialog
    NID.Initialize(Root,Me,"NoInternet")
    NID.StrButtonText = "Retry"
    NID.StrDescription = "Lorem ipsum dolor sit amet, consectetur adipiscing elit"
    NID.Create_Popup
    '-------End NoInternetDialog

Error:
(ErrnoException) android.system.ErrnoException: open failed: ENOENT (No such file or directory)




Hello Dear,

Could you check the logs and see if you have an error, it may show an empty panel due to failing to load the image which should exist in the assets folder.

Thank you,
saif
 

sfsameer

Well-Known Member
Licensed User
Longtime User
B4X:
Dim UID As UserInfoDialog
UID.Initialize(Root,Me,"UID")
UID.StrProfileName= "Saif Sameer"
UID.StrProfileDescription = "Test test test test test test test test test"
UID.StrButtonText = "Follow"
UID.StrLeft_FirstValue = "35.7K"
UID.StrLeft_SecondValue = "Followers"
UID.StrRight_FirstValue = "215"
UID.StrRight_SecondValue = "Following"
UID.ImgProfilePicture = LoadBitmap(File.DirAssets, "avatar.png")
UID.Create_Popup_Dark
Code:
'    '-------Begin NoInternetDialog :
    Dim NID As NoInternetDialog
    NID.Initialize(Root,Me,"NoInternet")
    NID.StrButtonText = "Retry"
    NID.StrDescription = "Lorem ipsum dolor sit amet, consectetur adipiscing elit"
    NID.Create_Popup
    '-------End NoInternetDialog

Error:
(ErrnoException) android.system.ErrnoException: open failed: ENOENT (No such file or directory)
Hello,

Open the module "NoInternetDialog" and in line 45 you will see that there is an image is being loaded "imgNoInternet.PNG", this image should be in your own app assets folder.

Thank you,
Saif
 
Top