Hi y'all
MashBlog is a custom component that has two types of 'blog' components that you can use in your ABMaterial WebApp.
Should you want to blog...
Simply put, you add it like this on any RC location...
This is DonationWare
MashBlog is a custom component that has two types of 'blog' components that you can use in your ABMaterial WebApp.
Should you want to blog...
Simply put, you add it like this on any RC location...
B4X:
'add these in sequence
blog.Initialize(page,"blog","")
blog.AddCardImage("../images/8.jpg",True,"")
blog.AddShare("socialshare",ABM.COLOR_GREEN)
blog.AddInfo("info",ABM.COLOR_LIGHTBLUE)
blog.AddBlogCategoryPlusTopic("Web Design","15, April 1973","ABMaterial Experiments",ABM.COLOR_GREEN)
blog.AddBlogContent("Blah blah blah blah")
blog.AddBlogAuthor("Anele 'Mashy' Mbanga","../images/sponge.png")
blog.AddRevealCardTitle("ABMaterial Being Best Framework",ABM.COLOR_GREY)
blog.AddRevealParagraph("Here is some more information about this blog...")
page.Cell(2,2).AddComponent(blog.ABMComp)
'a blog with hashtags
blog1.Initialize(page,"blog1","")
blog1.SetCardSize(blog1.EnumCardSize.small)
blog1.AddCardImage("../images/1.jpg",False,"")
Dim lTags As List = ABMShared.CreateList(",","Design,UX")
blog1.AddTitlePlusHashTags("Apples on the Table",ABM.COLOR_DEEPORANGE,lTags)
blog1.SetAuthorPlusDate("Anele 'Mashy' Mbanga","15, April 1973")
blog1.AddBlogContent("I am a very simple full width blog post....")
page.Cell(2,3).AddComponent(blog1.ABMComp)
This is DonationWare