我想检查Internet连接并在加载应用程序时在initState()中显示bottomSheet。 它在android上运行良好,但似乎在第一次加载应用程序时未监听。 这是代码:
x = 0:0.1:10;
plot (x, sin(x), 'r')
hold on
for i=1:size(x,2)
if mod(i,5) == 0
plot(x(i), sin(x(i)), 'b*');
pause(0.2);
endif
end
title('FINISHED')
出什么问题了?