ui gtTweetsFor: aView ^ aView explicit title: 'Tweets'; stencil: [ | container imageContainer | container := BlElement new layout: BlFlowLayout new; constraintsDo: [ :c | c vertical fitContent. c horizontal matchParent ]; padding: (BlInsets all: 10). self tweets do: [ :each | container addChild: each asCardElement ]. container asScrollableElement ]