diff --git a/Socialmetrica.package/TweetsCollection.class/instance/gtTweetsFor..st b/Socialmetrica.package/TweetsCollection.class/instance/gtTweetsFor..st index 7226c12..0132c09 100644 --- a/Socialmetrica.package/TweetsCollection.class/instance/gtTweetsFor..st +++ b/Socialmetrica.package/TweetsCollection.class/instance/gtTweetsFor..st @@ -12,5 +12,14 @@ gtTweetsFor: aView c horizontal matchParent ]; padding: (BlInsets all: 10). self tweets do: [ :each | - container addChild: each asCardElement ]. + imageContainer := BrAsyncWidget new + aptitude: BrShadowAptitude new; + background: Color white; + margin: (BlInsets all: 10); + constraintsDo: [ :c | + c vertical exact: 275. + c horizontal exact: 480 ]; + stencil: [ each asCardElement margin: (BlInsets all: 15) ]. + container addChild: imageContainer + ]. container asScrollableElement ] \ No newline at end of file