高さの異なる要素で scrollView を作成したいと思います。
私は各ビューを翻訳し、それらのそれぞれにオフセットを適用することになっていると思いますが、高さが各ビューで動的である場合(その中にあるもの)、どのようにこれを行うべきですか?
私はチャットを構築しようとしています。
ありがとうございました
scrollView の有名な/Angular ドキュメントから取られたコード
<fa-app ng-controller="ScrollCtrl">
<fa-scroll-view fa-pipe-from="myEventHandler">
<fa-view ng-repeat="view in views"> // views have different heights//
<fa-modifier fa-size="[undefined, undefined]">
<fa-surface fa-pipe-to="myEventHandler">
My surface with things inside it. what if its big?
</fa-surface>
</fa-modifier>
</fa-view>
<script>
angular.module('faScrollViewExampleApp', ['famous.angular'])
.controller('ScrollCtrl', ['$scope', '$famous', function($scope, $famous) {
var EventHandler = $famous['famous/core/EventHandler'];
//$scope.views = some item with differents heights
$scope.myEventHandler = new EventHandler();
}]);
</script>