Ionic 3 - 如何使用默认属性禁用滚动而不溢出:隐藏

时间:2017-11-29 13:31:56

标签: angular typescript ionic-framework ionic2 ionic3

我尝试了几种禁用滚动的方法。

scroll="false" ionic 3中是否有scroll-content之类的ionic3属性?

1 个答案:

答案 0 :(得分:1)

根据我的知识,没有这样的方法

这对我有用。抱歉,这是一个黑客:)

html的

CompletableFuture

.scss

import java.util.concurrent.*;
import java.util.stream.Stream;

public class CompletableFutureTest {


    public static void main(String[] args) throws ExecutionException, InterruptedException {
        CompletableFuture.supplyAsync(CompletableFutureTest::counting).whenComplete((result, exception) -> {
            if (exception != null) {
                System.out.println(result);
            } else {
            }
        }).get();

        System.out.println("xD");
    }


    public static int counting() {

        Stream.iterate(1, integer -> integer +1).limit(5).forEach(System.out::println);
        try {
            Thread.sleep(1000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        return 10;
    }
}