ОБНОВЛЕНИЕ
Если кто-то еще ищет это, это можно сделать, просто анимировав вид элемента
... items loaded ... then
{
let item = this.radList.listView.getItemAtIndex(0);
let view = this.radList.listView.getViewForItem(item);
setTimeout(()=> {
//animate on x axis - will show the swipe action at the right
view.animate({
translate: { x: 80, y: 0},
duration: 50,
curve: AnimationCurve.spring
});
//animate back to hide it
setTimeout(()=> {
view.animate({
translate: { x: 0, y: 0},
duration: 50,
curve: AnimationCurve.spring
});
}, 1000);
}, 2000);
}
...