2022-04-01 22:22:33 +00:00
|
|
|
ui
|
|
|
|
gtViewProfileDetailsOn: aView
|
|
|
|
<gtView>
|
|
|
|
^ aView explicit
|
|
|
|
title: 'Details' translated;
|
|
|
|
priority: 5;
|
|
|
|
stencil: [
|
2022-04-10 04:09:23 +00:00
|
|
|
| container |
|
2022-04-01 22:22:33 +00:00
|
|
|
container := BlElement new
|
|
|
|
layout: BlFlowLayout new;
|
|
|
|
constraintsDo: [ :c |
|
|
|
|
c vertical fitContent.
|
|
|
|
c horizontal matchParent ];
|
|
|
|
padding: (BlInsets all: 10).
|
2022-04-10 04:09:23 +00:00
|
|
|
container addChild: self asCardElement ].
|