Sub CreateItems
Dim cs As CSBuilder
For i = 1 To 50
cs.Initialize
If i Mod 3 = 0 Then
cs.Append($"This is airplane: ${i}"$).Typeface(Typeface.MATERIALICONS).Append(Chr(0xE195)).PopAll
CustomListView1.AddTextItem(cs, Swipe.CreateItemValue("", Array("Delete", "Fly to Airport")))
Else If i Mod 3 = 1 Then
cs.Append($"Very important item ${i} ..."$).PopAll
CustomListView1.AddTextItem(cs, Swipe.CreateItemValue("", Array("Action 1", "Action 2", "Action 3")))
Else
cs.Append($"Nothing to see here ${i}"$).PopAll
CustomListView1.AddTextItem(cs, Null)
End If
Next
End Sub