[B4X] [XUI] AS AppSummary
This library is used to describe the 3 or 4 most important functions of the app to the user the first time they use it, as an onboarding measure. The library can also be used as an update log if you have released a major update and want to inform the user which new things are now in the app. I...

In this example I will show you how you can use the new blocks in the AS_AppSummary to add something like this to your app:
Yes, more code is not needed for this result
B4X:
AS_AppSummary1.TitleTop = 0
AS_AppSummary1.AddImageItem(xui.LoadBitmap(File.DirAssets,"NewFeature.png"),Root.Width,"")
AS_AppSummary1.AddPlaceholder(10dip)
AS_AppSummary1.AddTitleItem("Detailed Task Distribution Overview","")
AS_AppSummary1.AddPlaceholder(10dip)
AS_AppSummary1.AddDescriptionItem("Pie chart showing task distribution by category and time range for quick performance insights.","")
AS_AppSummary1.ConfirmButtonText = "Continue"
AS_AppSummary1.Refresh
Example project is attached, you need V2.02+