摘要:
用Flutter打乱对象数组的函数如下: int getRandomInt(var min,var max){ final _random = new Random(); return _random.nextInt((max - min).floor()) + min; } //打乱数组 shuf 阅读全文
摘要:
用Flutter写页面时,有时页面内容太多,底部会出现黄色条纹。 解决方法:在组件外增加一层ListView即可。 如将代码: body: Center( child: Column( mainAxisAlignment: MainAxisAlignment.center, children: <W 阅读全文